We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ff6c4c commit 7a3e70dCopy full SHA for 7a3e70d
.github/workflows/release.yml
@@ -38,15 +38,15 @@ jobs:
38
- id: npm-tag
39
name: Determine NPM tag
40
env:
41
- ALTERNATE_RELEASE_TAG: ${{ github.event.release.tag_name }}
+ GITHUB_RELEASE_TAG: ${{ github.event.release.tag_name }}
42
run: |
43
VERSION=$(jq -r '.version' package.json)
44
LATEST_RELEASE_TAG="${{ steps.latest-release.outputs['latest-release-tag']}}"
45
46
if [[ ${{ github.event_name }} == "workflow_dispatch" ]]; then
47
RELEASE_TAG=${GITHUB_REF#refs/tags/}
48
else
49
- RELEASE_TAG=$ALTERNATE_RELEASE_TAG
+ RELEASE_TAG=$GITHUB_RELEASE_TAG
50
fi
51
52
if [[ $RELEASE_TAG == $LATEST_RELEASE_TAG ]]; then
0 commit comments