We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e6a23c commit 478fb75Copy full SHA for 478fb75
.github/workflows/publish.yml
@@ -19,6 +19,10 @@ jobs:
19
server-password: MAVEN_PASSWORD
20
gpg-private-key: ${{ secrets.GPG_SIGNING_KEY }} # Value of the GPG private key to import
21
gpg-passphrase: GPG_PASSPHRASE # env variable for GPG private key passphrase
22
+ - name: Set release notes tag
23
+ run: |
24
+ RELEASE_TAG_VERSION=${{ github.event.release.tag_name }}
25
+ echo "RELEASE_TAG_VERSION=${RELEASE_TAG_VERSION:1}" >> $GITHUB_ENV
26
- name: Publish package
27
run: mvn -P sign,build-without-spotbugs clean deploy -DskipTests
28
env:
0 commit comments