Skip to content

Commit

Permalink
ci: try to make deployments fail
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelarbibe committed Jul 1, 2024
1 parent 75bd917 commit b4a7de0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,8 @@ jobs:
run: npm install --global vercel@latest
- name: Deploy to Vercel
id: deploy
run: echo "url=$(vercel ${{ inputs.isProd == true && '--prod' || '' }} --yes --token=${{ secrets.VERCEL_TOKEN }})" >> "$GITHUB_OUTPUT"
run: |
echo "url=$(vercel ${{ inputs.isProd == true && '--prod' || '' }} --yes --token=${{ secrets.VERCEL_TOKEN }})" >> "$GITHUB_OUTPUT"
code=$?
if [ $code -ne 0 ]; then exit 1; fi

0 comments on commit b4a7de0

Please sign in to comment.