Skip to content

Commit

Permalink
chore: add self hosted cd workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
aseerkt committed Aug 8, 2024
1 parent 8ce0b37 commit 5192212
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: mChat Deployment

on:
push:
branches:
- main

jobs:
build:
runs-on: self-hosted

steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'

- name: Install deps
run: pnpm i




0 comments on commit 5192212

Please sign in to comment.