Skip to content

Commit

Permalink
fix env in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
luttje committed Dec 1, 2024
1 parent 4f357e8 commit 8471117
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/publish_version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ jobs:
git fetch --prune --unshallow --tags
latest_tag=$(git describe --abbrev=0 --tags)
echo "LATEST_TAG=$latest_tag" >> $GITHUB_ENV
echo "Latest tag is $LATEST_TAG"
echo "Latest tag is $latest_tag"
- name: Fail if no tag is found
run: |
Expand All @@ -143,7 +143,6 @@ jobs:
id: create_release
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
LATEST_TAG: ${{ steps.get_tag.outputs.LATEST_TAG }}
run: |
gh release create $LATEST_TAG \
--prerelease \
Expand Down

0 comments on commit 8471117

Please sign in to comment.