Skip to content

Commit

Permalink
fix: 🐛 Cannot use double quotes in interpolation in GHA
Browse files Browse the repository at this point in the history
In the ${{ ... }} commands, only single quotes are allowed.
  • Loading branch information
abelsiqueira committed Jun 4, 2024
1 parent daf6e92 commit 587019c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/Test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
allow_failure: ${{ matrix.allow_failure }}
run_codecov: ${{ matrix.version == "1" && matrix.os == "ubuntu-latest" }}
run_codecov: ${{ matrix.version == '1' && matrix.os == 'ubuntu-latest' }}
secrets:
codecov_token: ${{ secrets.CODECOV_TOKEN }}
strategy:
Expand Down

0 comments on commit 587019c

Please sign in to comment.