feat(web): add course register sidepanel (#90) #8
This file contains hidden or 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: web (prod) | |
| on: | |
| push: | |
| branches: | |
| - prod | |
| paths: | |
| - "apps/web/**" | |
| - "packages/server/**" | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| environment: deploy-web | |
| env: | |
| VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }} | |
| VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }} | |
| steps: | |
| - name: 💾 Checkout code | |
| uses: actions/checkout@v4 | |
| - name: 📦 Setup bun | |
| uses: oven-sh/setup-bun@v2 | |
| - name: 📦 Install Vercel CLI | |
| run: bun add --global vercel@latest | |
| - name: 🚀 Deploy Project to Vercel | |
| run: vercel deploy --prod --token=${{ secrets.VERCEL_TOKEN }} |