Skip to content

Commit d9b0119

Browse files
committed
Fix GitHub release creation for tag builds
1 parent 30c5f53 commit d9b0119

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

.github/workflows/release-macos.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -995,7 +995,6 @@ jobs:
995995
996996
if gh release create "$TAG" \
997997
"${RELEASE_FILES[@]}" \
998-
--target "${{ needs.prepare.outputs.target_sha }}" \
999998
--title "$TAG" \
1000999
--generate-notes \
10011000
--repo "${GITHUB_REPOSITORY}" \

.github/workflows/release-macos13.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,9 +89,9 @@ jobs:
8989
TAG="${{ github.event.inputs.tag }}"
9090
if ! gh release view "$TAG" >/dev/null 2>&1; then
9191
gh release create "$TAG" \
92-
--target "${{ steps.resolve_target.outputs.sha }}" \
9392
--title "$TAG" \
94-
--notes ""
93+
--notes "" \
94+
--repo "${GITHUB_REPOSITORY}"
9595
fi
9696
9797
build:

0 commit comments

Comments
 (0)