Skip to content

Commit

Permalink
spaces got me (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
lounsbrough authored Sep 10, 2024
1 parent 804c7bb commit c00c937
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,7 @@ jobs:
vercel link --yes --project coup-server --token=${{ secrets.VERCEL_TOKEN }}
vercel pull --yes --environment=${{ inputs.environment }} --token=${{ secrets.VERCEL_TOKEN }}
pnpm build
if ["${{ inputs.environment }}"="production"]
then
if [ "${{ inputs.environment }}" = "production" ]; then
vercel build --prod --token=${{ secrets.VERCEL_TOKEN }}
else
vercel build --token=${{ secrets.VERCEL_TOKEN }}
Expand All @@ -43,8 +42,7 @@ jobs:
cd client
vercel link --yes --project coup-client --token=${{ secrets.VERCEL_TOKEN }}
vercel pull --yes --environment=${{ inputs.environment }} --token=${{ secrets.VERCEL_TOKEN }}
if ["${{ inputs.environment }}"="production"]
then
if [ "${{ inputs.environment }}" = "production" ]; then
vercel build --prod --token=${{ secrets.VERCEL_TOKEN }}
else
vercel build --token=${{ secrets.VERCEL_TOKEN }}
Expand Down

0 comments on commit c00c937

Please sign in to comment.