Skip to content

Commit 8b00678

Browse files
Fix blockfrost_token string interpolation in CI (#2065)
This is not executing the if statement. https://github.com/cardano-scaling/hydra/actions/runs/15543688764/job/44125316526?pr=2052
1 parent a119e21 commit 8b00678

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci-nix.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
- name: ❓ Test
4848
if: ${{ matrix.package != 'hydra-tui' }}
4949
run: |
50-
if [[ ${{secrets.blockfrost_token}} != '' ]]; then
50+
if [[ "${{secrets.blockfrost_token}}" != '' ]]; then
5151
echo "${{secrets.blockfrost_token}}" > blockfrost-project.txt
5252
cd ${{ matrix.package }}
5353
nix build .#${{ matrix.package }}-tests

0 commit comments

Comments
 (0)