Skip to content

Commit

Permalink
Merge pull request #1939 from dev-protocol/debug-deploy-env
Browse files Browse the repository at this point in the history
adds space in case empty string is falsy
  • Loading branch information
stuartwk authored Jan 24, 2024
2 parents 75e5277 + 2f81230 commit 7242f5c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ jobs:
- name: Pull Vercel Environment Information
run: vercel pull --yes --environment=${{ steps.check.outputs.isPrerelease == 'true' && 'preview' || 'production' }} --token=${{ secrets.VERCEL_TOKEN }}
- name: Build Project Artifacts
run: vercel build ${{ steps.check.outputs.isPrerelease == 'true' && '' || '--prod' }} --token=${{ secrets.VERCEL_TOKEN }}
run: vercel build ${{ steps.check.outputs.isPrerelease == 'true' && ' ' || '--prod' }} --token=${{ secrets.VERCEL_TOKEN }}
- name: Deploy Project Artifacts to Vercel
run: vercel deploy --prebuilt ${{ steps.check.outputs.isPrerelease == 'true' && '' || '--prod' }} --token=${{ secrets.VERCEL_TOKEN }}
run: vercel deploy --prebuilt ${{ steps.check.outputs.isPrerelease == 'true' && ' ' || '--prod' }} --token=${{ secrets.VERCEL_TOKEN }}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "clubs",
"version": "0.12.1-beta.5",
"version": "0.12.1-beta.6",
"private": true,
"type": "module",
"scripts": {
Expand Down

0 comments on commit 7242f5c

Please sign in to comment.