Skip to content

Commit

Permalink
setup cicd
Browse files Browse the repository at this point in the history
  • Loading branch information
High10Hunter committed Mar 13, 2024
1 parent a863005 commit 82499b8
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Build and Deploy
on:
push:
paths:
- '**.js'
branches:
- develop
pull_request:
types: [opened, synchronize]
branches:
- develop
jobs:
build:
runs-on: self-hosted

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '16.x'

- name: Install dependencies
run: cd backend && npm ci

deploy:
needs: build
runs-on: self-hosted

steps:
- name: Copy .env file
run: cp ~/env/.env backend/.env

- name: Restart api server
run: cd backend && pm2 restart api --update-env

- name: Notify success deployment
run: echo "Deployment complete"

0 comments on commit 82499b8

Please sign in to comment.