generated from keploy/template
-
Notifications
You must be signed in to change notification settings - Fork 19
45 lines (35 loc) · 1.19 KB
/
release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: Release Java SDK to Maven Central
on:
pull_request:
branches: ['main']
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
cache: 'maven'
- name: Import GPG Key
uses: crazy-max/ghaction-import-gpg@v4
with:
gpg_private_key: "1234"
passphrase: ${{ secrets.GPG_PASSPHRASE }}
# - name: Set Maven Version
# run: mvn versions:set -DnewVersion=${{ github.event.inputs.newVersion }}
# - name: Commit new version
# run: |
# git config --local user.email "action@github.com"
# git config --local user.name "GitHub Action"
# git commit -am "Update project version to ${{ github.event.inputs.newVersion }}"
# git push
- name: Deploy to Maven Central
run: mvn clean deploy -P release
env:
MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }}
MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }}
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}