We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a3aa89d commit 2929cbfCopy full SHA for 2929cbf
.github/workflows/deploy-maven.yml
@@ -0,0 +1,22 @@
1
+name: Deploy to Maven
2
+
3
+# Run workflow only on commits to `master`
4
+on:
5
+ push:
6
+ branches:
7
+ - master
8
9
+jobs:
10
+ release:
11
+ runs-on: ubuntu-18.04
12
+ steps:
13
+ - name: Check out Git repository
14
+ uses: actions/checkout@v1
15
16
+ - name: Release to Central Repository
17
+ uses: samuelmeuli/action-maven-publish@master
18
+ with:
19
+ gpg_private_key: ${{ secrets.gpg_private_key }}
20
+ gpg_passphrase: ${{ secrets.gpg_passphrase }}
21
+ ossrh_username: ${{ secrets.ossrh_username }}
22
+ ossrh_password: ${{ secrets.ossrh_password }}
0 commit comments