Skip to content

Commit

Permalink
Merge pull request #99 from CS3219-AY2324S1/Guo-KeCheng-patch-1
Browse files Browse the repository at this point in the history
Create deploy-to-prod.yml
  • Loading branch information
Guo-KeCheng authored Nov 13, 2023
2 parents 4814e04 + ecee7dd commit 34cb822
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/deploy-to-prod.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Deploy to Production

on:
push:
branches:
- master

jobs:
deploy:
runs-on: ubuntu-latest

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

- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 18

- name: Install dependencies
run: npm install

- name: Deploy to Production
run: ../../deploy.sh

0 comments on commit 34cb822

Please sign in to comment.