Skip to content

Commit

Permalink
fix: reference correct step
Browse files Browse the repository at this point in the history
  • Loading branch information
josegonzalez committed May 16, 2024
1 parent e8d06f8 commit ef71b6b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/bump-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ jobs:
echo GIT_LATEST_TAG="$(git describe --tags "$(git rev-list --tags --max-count=1)")" >>"$GITHUB_OUTPUT"
- name: Compute Next Tag
id: next-tag
run: |
git_next_tag="$(docker run --rm -e GITHUB_VERSION_INPUT -e GITHUB_VERSION_BUMP ghcr.io/${{ github.repository }}:${{ github.sha }})"
if [[ -z "$git_next_tag" ]]; then
Expand All @@ -75,4 +76,4 @@ jobs:
git tag "$GIT_NEXT_TAG"
git push origin "$GIT_NEXT_TAG"
env:
GIT_NEXT_TAG: ${{ steps.latest-tag.outputs.GIT_NEXT_TAG }}
GIT_NEXT_TAG: ${{ steps.next-tag.outputs.GIT_NEXT_TAG }}

0 comments on commit ef71b6b

Please sign in to comment.