Skip to content

Commit 6e30b85

Browse files
committed
Fix GitHub release command to include version prefix
1 parent 44cd01d commit 6e30b85

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/publish-maven.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,11 +176,11 @@ jobs:
176176
EOF
177177
)
178178
179-
gh release create "${VERSION}" \
179+
gh release create "v${VERSION}" \
180180
${{ inputs.prerelease == true && '--prerelease' || '' }} \
181181
--title "Copilot Community Java SDK ${VERSION}" \
182182
--notes "${RELEASE_NOTES}" \
183183
--generate-notes \
184-
--target "${VERSION}"
184+
--target "v${VERSION}"
185185
env:
186186
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)