chore(release): v0.0.6 #11
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 To Production | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
deploy-production: | |
name: Run Tests and Deploy to Production | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Cache Dependencies | |
uses: actions/[email protected] | |
with: | |
path: ~/.bun | |
key: ${{ runner.os }}-bun-${{ hashFiles('**/bun.lockb') }} | |
restore-keys: ${{ runner.os }}-bun- | |
- name: Setup Bun | |
uses: oven-sh/[email protected] | |
- run: bun install | |
# - name: Run Tests | |
# run: bun run test | |
- name: Deploy to Production | |
uses: amondnet/[email protected] | |
id: deploy-vercel-production | |
with: | |
vercel-token: ${{ secrets.VERCEL_TOKEN }} | |
vercel-org-id: ${{ secrets.VERCEL_ORG_ID }} | |
vercel-project-id: ${{ secrets.VERCEL_PROJECT_ID_EXERCISEDB }} | |
vercel-args: --prod | |
scope: ${{ secrets.VERCEL_ORG_ID }} |