Add github actions #5
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy | |
on: | |
push: | |
branches: | |
- main | |
- auth | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
- name: Install dependencies | |
uses: bahmutov/npm-install@v1 | |
- name: Build project | |
run: npm run build | |
- name: Zip artifact for deployment | |
run: zip release.zip ./frontend -r | |
- name: Upload production-ready build files | |
uses: actions/upload-artifact@v3 | |
with: | |
name: dist | |
path: release.zip | |
deploy: | |
name: Deploy | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download artifact | |
uses: actions/download-artifact@v3 | |
with: | |
name: dist | |
- name: unzip artifact for deployment | |
run: unzip release.zip | |
- uses: actions/checkout@v2 | |
- uses: amondnet/vercel-action@v20 #deploy | |
with: | |
vercel-token: ${{ secrets.VERCEL_TOKEN }} # Required | |
vercel-args: '--prod' #Optional | |
vercel-org-id: ${{ secrets.ORG_ID}} #Required | |
vercel-project-id: ${{ secrets.PROJECT_ID}} #Required | |
working-directory: . #Optional |