File tree 1 file changed +1
-6
lines changed
1 file changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -103,11 +103,6 @@ jobs:
103
103
104
104
- uses : actions/checkout@v4
105
105
106
- - name : Set ON_RELEASE_BRANCH based on trigger
107
- shell : bash
108
- run : echo "ON_RELEASE_BRANCH=true" >> $GITHUB_ENV
109
- if : github.event_name == 'push' && startsWith(github.ref, 'refs/heads/release/v')
110
-
111
106
- name : Use Node ${{ matrix.node }}
112
107
uses : actions/setup-node@v4
113
108
with :
@@ -170,7 +165,7 @@ jobs:
170
165
171
166
- name : Install the Bolt CLI and create & build a new project
172
167
shell : bash
173
- if : ${{ env.ON_RELEASE_BRANCH != 'true' }}
168
+ if : ${{ !startsWith(github.ref, 'refs/heads/release/v') && !startsWith(github.head_ref, 'release/v') }}
174
169
run : |
175
170
export PATH="/home/runner/.local/share/solana/install/active_release/bin:$PATH"
176
171
cargo install --path cli --force --locked
You can’t perform that action at this time.
0 commit comments