We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce0ecfb commit 63b2d46Copy full SHA for 63b2d46
.github/workflows/run-tests.yml
@@ -165,11 +165,11 @@ jobs:
165
166
- name: Print github.ref
167
shell: bash
168
- run: echo "The current github.ref is ${{ github.ref }}"
+ run: echo "The current github.ref is $GITHUB_REF"
169
170
- name: Install the Bolt CLI and create & build a new project
171
172
- if: ${{ !startsWith(github.ref, 'refs/heads/release/v') }}
+ if: ${{ !startsWith($GITHUB_REF, 'refs/heads/release/v') }}
173
run: |
174
export PATH="/home/runner/.local/share/solana/install/active_release/bin:$PATH"
175
cargo install --path cli --force --locked
0 commit comments