Skip to content

Commit 87b258e

Browse files
committed
use expressions in ci
1 parent 87c93fe commit 87b258e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ jobs:
3030
echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
3131
echo "date=$(date +"%B %d, %Y")" >> $GITHUB_OUTPUT
3232
- name: Build
33-
if: startsWith(github.event.head_commit.message, ${{ env.RELEASE_COMMIT_MSG }})
33+
if: ${{ startsWith(github.event.head_commit.message, env.RELEASE_COMMIT_MSG) }}
3434
run: pnpm --filter=@graphprotocol/graph-cli build
3535
- name: Pack binaries
36-
if: startsWith(github.event.head_commit.message, ${{ env.RELEASE_COMMIT_MSG }})
36+
if: ${{ startsWith(github.event.head_commit.message, env.RELEASE_COMMIT_MSG) }}
3737
run: pnpm --filter=@graphprotocol/graph-cli oclif:pack
3838
- name: Release / pull_request
3939
uses: dotansimha/[email protected]

0 commit comments

Comments
 (0)