We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20496bb commit 4371b76Copy full SHA for 4371b76
.github/workflows/generate-publish-sdk.yaml
@@ -1,4 +1,3 @@
1
-id: generate-publish-sdk-new
2
on:
3
workflow_dispatch:
4
inputs:
@@ -55,7 +54,7 @@ jobs:
55
54
run: |
56
version="${{ github.event.inputs.version }}"
57
if [[ "${v// /}" == *"-SNAPSHOT" ]]; then
58
- gradle publishSnapshot
+ gradle publishSnapshot -PVERSION="${version}"
59
else
60
- gradle publishToSonatype closeAndReleaseSonatypeStagingRepository
+ gradle publishToSonatype closeAndReleaseSonatypeStagingRepository -PVERSION="${version}"
61
fi
0 commit comments