We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43f4109 commit b2fb38cCopy full SHA for b2fb38c
1 file changed
.github/workflows/release.yml
@@ -14,6 +14,7 @@ jobs:
14
uses: actions/checkout@v4
15
with:
16
fetch-depth: 0
17
+ ref: ${{ github.ref }}
18
19
- name: Setup Bun
20
uses: oven-sh/setup-bun@v2
@@ -35,10 +36,13 @@ jobs:
35
36
TAG_NAME=${GITHUB_REF#refs/tags/}
37
echo "version=${TAG_NAME#v}" >> $GITHUB_OUTPUT
38
echo "tag=${TAG_NAME}" >> $GITHUB_OUTPUT
39
+ echo "TAG_NAME is: $TAG_NAME"
40
+ echo "GITHUB_REF is: $GITHUB_REF"
41
42
- name: Create Release
43
uses: softprops/action-gh-release@v2
44
45
+ tag_name: ${{ steps.tag_version.outputs.tag }}
46
files: navsweeper.zip
47
name: Release ${{ steps.tag_version.outputs.tag }}
48
body: |
0 commit comments