Skip to content

Commit 70d3f17

Browse files
committed
👷 ci: fix pack filename issue
1 parent 9f0c5b4 commit 70d3f17

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

‎.github/workflows/release-beta.yaml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ jobs:
9696
- name: Get tag
9797
id: tag
9898
run: |
99-
TAG_NAME=$(git describe --tags --exact-match)
99+
TAG_NAME=$(git describe --tags --exact-match || echo "")
100100
echo TAG_NAME=$TAG_NAME >> $GITHUB_OUTPUT
101101
102102
- name: Upload release assets

‎.github/workflows/release.yaml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ jobs:
9393
- name: Get tag
9494
id: tag
9595
run: |
96-
TAG_NAME=$(git describe --tags --exact-match)
96+
TAG_NAME=$(git describe --tags --exact-match || echo "")
9797
echo TAG_NAME=$TAG_NAME >> $GITHUB_OUTPUT
9898
9999
- name: Upload release assets

0 commit comments

Comments
 (0)