We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe1bc8c commit 01da40dCopy full SHA for 01da40d
.github/workflows/tag.yml
@@ -28,5 +28,6 @@ jobs:
28
29
- name: Tag and push
30
run: |
31
- git tag "$GITHUB_OUTPUT"
32
- git push origin "$GITHUB_OUTPUT"
+ new_tag="${{ steps.current_version.outputs.current_version }}"
+ git tag "$new_tag"
33
+ git push origin "$new_tag"
0 commit comments