Skip to content

Commit

Permalink
ci: fix preview deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelarbibe committed Jun 29, 2024
1 parent 21f70e4 commit 311be28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ jobs:
run: npm install --global vercel@latest
- name: Deploy to Vercel
id: deploy
run: echo "url=$(vercel ${{ inputs.isProd && '--prod' }} --yes --token=${{ secrets.VERCEL_TOKEN }})" >> "$GITHUB_OUTPUT"
run: echo "url=$(vercel ${{ inputs.isProd == true && '--prod' || '' }} --yes --token=${{ secrets.VERCEL_TOKEN }})" >> "$GITHUB_OUTPUT"

0 comments on commit 311be28

Please sign in to comment.