Skip to content

Commit 1b18ca0

Browse files
committed
Fix: version workflow
1 parent ac3774e commit 1b18ca0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/sync-version.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,4 +100,5 @@ jobs:
100100
TAG_NAME: ${{ steps.prep.outputs.version }}
101101
run: |
102102
set -euo pipefail
103-
gh release edit "$TAG_NAME" --target "$TAG_NAME"
103+
COMMIT_SHA=$(git rev-parse HEAD)
104+
gh release edit "$TAG_NAME" --target "$COMMIT_SHA"

0 commit comments

Comments
 (0)