Skip to content

Fixes to Navbar (#10) #4

Fixes to Navbar (#10)

Fixes to Navbar (#10) #4

Workflow file for this run

name: Staging Deployment
on:
push:
branches:
- 'main'
jobs:
deploy_staging:
name: Deploy Staging
runs-on: ubuntu-latest
environment:
name: staging
url: ${{ vars.ENV_URL }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install node
uses: actions/setup-node@v4
with:
node-version: '21.7.3'
- name: Install dependencies
run: npm install
- name: Lint and build code, then publish to Vercel
run: >
vercel
--token ${{ secrets.VERCEL_TOKEN }}
-n ${{ vars.VERCEL_PROJECT }}
--yes
--prod
- name: Success
run: echo "πŸš€ Deploy successful - BLAST OFF WOO! (woot woot) !!! πŸ• πŸ• πŸ• πŸš€ "