Skip to content

Commit a70d32a

Browse files
committed
ci: tag HEAD instead of stale COMMIT_REF in puniversald workflow
Companion to the previous dispatch-UI simplification. Removed the COMMIT_REF plumbing but missed the git tag -a line that still referenced the now-undefined variable, breaking workflow_dispatch.
1 parent 44187be commit a70d32a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/release-universal.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
git push --delete origin "$FULL_TAG" || true
8888
fi
8989
90-
git tag -a "$FULL_TAG" "$COMMIT_REF" -m "Release $FULL_TAG"
90+
git tag -a "$FULL_TAG" HEAD -m "Release $FULL_TAG"
9191
git push origin "$FULL_TAG"
9292
9393
- name: Set up Go

0 commit comments

Comments
 (0)