generated from salesforce/oss-template
-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (39 loc) · 1.4 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
name: Release to staging
on:
release:
types: [ "created" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 8
uses: actions/setup-java@v4
with:
java-version: '8'
distribution: 'temurin'
server-id: ossrh
server-username: 'MAVEN_USERNAME'
server-password: 'MAVEN_PASSWORD'
gpg-private-key: ${{ secrets.GPG_SIGNING_KEY }}
gpg-passphrase: 'MAVEN_GPG_PASSPHRASE'
- name: Get hyperd version
id: evaluate-property
run: |
echo "HYPER_VERSION=$(mvn help:evaluate -Dexpression=hyperapi.version -q -DforceStdout)" >> $GITHUB_ENV
- name: Cache hyperd
uses: actions/cache@v3
with:
path: |
target/.cache
key: ${{ runner.os }}-hyper-${{ env.HYPER_VERSION }}
restore-keys: |
${{ runner.os }}-hyper-${{ env.HYPER_VERSION }}
- name: Set version
run: mvn versions:set --no-transfer-progress -DnewVersion=${{ github.event.release.tag_name }}
- name: Build with Maven
run: mvn --batch-mode --no-transfer-progress clean deploy -P release --file pom.xml
env:
MAVEN_USERNAME: ${{ secrets.CENTRAL_TOKEN_USERNAME }}
MAVEN_PASSWORD: ${{ secrets.CENTRAL_TOKEN_PASSWORD }}
MAVEN_GPG_PASSPHRASE: ${{ secrets.GPG_SIGNING_KEY_PASSWORD }}