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 417f96b commit 610ca91Copy full SHA for 610ca91
.github/workflows/release.yml
@@ -29,7 +29,7 @@ jobs:
29
server-username: BINTRAY_USER
30
server-password: BINTRAY_PASS
31
- name: Publish release
32
- run: mvn release:clean release:prepare release:perform -B -e -Pbintray
+ run: bash github-build.sh
33
env:
34
BINTRAY_USER: ${{ secrets.BINTRAY_USER }}
35
BINTRAY_PASS: ${{ secrets.BINTRAY_PASSWORD }}
github-build.sh
@@ -40,6 +40,8 @@ commitNextVersion() {
40
git commit -a -m "Update version for release"
41
}
42
43
+git config --global user.email "actions@github.com"
44
+git config --global user.name "GitHub Actions"
45
46
echo "Deploying release to Bintray"
47
0 commit comments