remove bad env use (#1435)
This commit is contained in:
parent
c30d799811
commit
70f954b308
1 changed files with 1 additions and 1 deletions
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
|
@ -58,7 +58,7 @@ jobs:
|
||||||
env:
|
env:
|
||||||
PACKAGE_VERSION: ${{ needs.release-check.outputs.version }}
|
PACKAGE_VERSION: ${{ needs.release-check.outputs.version }}
|
||||||
PRERELEASE: ${{ needs.release-check.outputs.prerelease }}
|
PRERELEASE: ${{ needs.release-check.outputs.prerelease }}
|
||||||
TAG: ${{ env.PRERELEASE == 'true' && 'next' || 'latest' }}
|
TAG: ${{ needs.release-check.outputs.prerelease == 'true' && 'next' || 'latest' }}
|
||||||
steps:
|
steps:
|
||||||
- name: Check out repository ✨
|
- name: Check out repository ✨
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
Loading…
Reference in a new issue