Skip to content

Commit feddf43

Browse files
authored
ci(boil): Fix env var interpolation (#1568)
1 parent fed1d98 commit feddf43

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/boil_release.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
RELEASE_NOTES: ${{ steps.changelog.outputs.content }}
4040
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4141
shell: bash
42-
run: gh release create --draft --verify-tag --latest --notes "$RELEASE_NOTES" "RELEASE_TAG"
42+
run: gh release create --draft --verify-tag --latest --notes "${RELEASE_NOTES}" "${RELEASE_TAG}"
4343

4444
build:
4545
name: Build boil
@@ -82,7 +82,7 @@ jobs:
8282
env:
8383
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
8484
shell: bash
85-
run: gh release upload "RELEASE_TAG" boil-${{ matrix.targets.target }}
85+
run: gh release upload "${RELEASE_TAG}" boil-${{ matrix.targets.target }}
8686

8787
finish-release:
8888
needs: [build]
@@ -96,4 +96,4 @@ jobs:
9696
env:
9797
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
9898
shell: bash
99-
run: gh release edit --draft=false "$RELEASE_TAG"
99+
run: gh release edit --draft=false "${RELEASE_TAG}"

0 commit comments

Comments
 (0)