Skip to content

Commit

Permalink
Huh?
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonyshew committed Aug 6, 2024
1 parent 12de8ad commit be970db
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy-docs-site.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ jobs:
- uses: actions/checkout@v2

- name: Install Vercel CLI
run: npm install --global vercel@latest
run: pnpm install --global vercel@latest

- name: Create preview deployment
run: vercel redeploy turbo.build --token=${{ secrets.VERCEL_TOKEN }}
run: vercel deploy --token=${{ secrets.VERCEL_TOKEN }}

deploy-production:
runs-on: ubuntu-latest
Expand All @@ -38,7 +38,7 @@ jobs:
- uses: actions/checkout@v2

- name: Install Vercel CLI
run: npm install --global vercel@latest
run: pnpm install --global vercel@latest

- name: Create production deployment
run: vercel redeploy turbo.build --token=${{ secrets.VERCEL_TOKEN }}
run: vercel deploy --token=${{ secrets.VERCEL_TOKEN }}

0 comments on commit be970db

Please sign in to comment.