Skip to content

Commit 1c13e6e

Browse files
committed
Fix GitHub release command to use correct version formatting and title
1 parent f4d4ad9 commit 1c13e6e

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/publish-maven.yml

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

0 commit comments

Comments
 (0)