remove bad env use (#1435)

This commit is contained in:
Andrew Calcutt 2025-01-10 18:53:06 -05:00 committed by GitHub
parent c30d799811
commit 70f954b308
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -58,7 +58,7 @@ jobs:
env:
PACKAGE_VERSION: ${{ needs.release-check.outputs.version }}
PRERELEASE: ${{ needs.release-check.outputs.prerelease }}
TAG: ${{ env.PRERELEASE == 'true' && 'next' || 'latest' }}
TAG: ${{ needs.release-check.outputs.prerelease == 'true' && 'next' || 'latest' }}
steps:
- name: Check out repository ✨
uses: actions/checkout@v4