We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4fe7a5a commit bbc725eCopy full SHA for bbc725e
.github/workflows/build.yml
@@ -16,7 +16,7 @@ jobs:
16
env:
17
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Use the default GITHUB_TOKEN
18
run: |
19
- TAG=${GITHUB_REF#refs/tags/} # Extract the tag name from the ref
+ TAG="${{ github.ref_name }}"
20
gh release create "$TAG" \
21
--draft \
22
--title "Release $TAG" \
0 commit comments