Skip to content

feat: add desktop app download buttons to hero #4

feat: add desktop app download buttons to hero

feat: add desktop app download buttons to hero #4

name: Deploy Website
on:
push:
branches: [main]
paths: ['website/**']
workflow_dispatch:
env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Vercel CLI
run: npm install -g vercel@latest
- name: Pull Vercel Environment
run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }} --cwd website
- name: Deploy to Production
run: vercel deploy --prod --token=${{ secrets.VERCEL_TOKEN }} --cwd website