Skip to content

Commit

Permalink
chore: use correct quote marks
Browse files Browse the repository at this point in the history
  • Loading branch information
Sean McCaffery committed Sep 13, 2024
1 parent 433ed44 commit 37f12ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/nextjs_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ jobs:
run: yarn install --production
- name: Check logic
run: |
echo ${{ github.ref == 'refs/heads/main' && "bad" || "good" }}
echo ${{ github.ref != 'refs/heads/main' && "good" || "bad" }}
echo ${{ github.ref == 'refs/heads/main' && 'bad' || 'good' }}
echo ${{ github.ref != 'refs/heads/main' && 'good' || 'bad' }}
- name: Build with Next.js
run: yarn build
env:
Expand Down

0 comments on commit 37f12ff

Please sign in to comment.