We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3520b20 commit 90b3572Copy full SHA for 90b3572
.github/workflows/deploy.yml
@@ -47,12 +47,14 @@ jobs:
47
gpg-passphrase: GPG_PASSPHRASE
48
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }}
49
50
- - name: Create Maven Central Release
51
- shell: bash
+ - name: Configure Git
52
run: |-
53
git config user.name '${{ github.actor }}'
54
git config user.email '${{ github.actor }}@users.noreply.github.com'
55
+ - name: Create Maven Central Release
56
+ shell: bash
57
+ run: |-
58
if [[ '${{ inputs.version }}' == "" ]]; then
59
release_version="$(./mvnw -B help:evaluate -Dexpression=project.version -q -DforceStdout | sed 's/-SNAPSHOT//g')"
60
else
0 commit comments