Skip to content

Commit

Permalink
Trying to fix bug. Add missing id.
Browse files Browse the repository at this point in the history
  • Loading branch information
ogra committed Aug 7, 2024
1 parent b741a2c commit e347f65
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/nightly-release-macos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@ jobs:
- name: Delete old tag
id: old-tag
run: |
echo "old_tag_name=$(git describe --tags --abbrev=0)" >> $GITHUB_ENV
git tag -d ${{ env.old_tag_name }}
git push origin :refs/tags/${{ env.old_tag_name }}
echo "old_tag_name=$(git describe --tags --abbrev=0)" >> $GITHUB_OUTPUT
git tag -d ${{ steps.old-tag.outputs.old_tag_name }}
git push origin :refs/tags/${{ steps.old-tag.outputs.old_tag_name }}
- name: Create new tag
run: |
Expand Down

0 comments on commit e347f65

Please sign in to comment.