-
Notifications
You must be signed in to change notification settings - Fork 0
55 lines (48 loc) · 1.8 KB
/
release-sdk.yaml
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
46
47
48
49
50
51
52
53
54
55
name: Release SDK to Maven Central
on:
workflow_dispatch:
inputs:
version:
description: |
The version to release.
Add -SNAPSHOT to release a snapshot version.
required: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
java-version: 21
distribution: 'temurin'
server-id: oss-sonatype
server-username: SONATYPE_USERNAME
server-password: SONATYPE_PASSWORD
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }}
gpg-passphrase: GPG_PASSPHRASE
settings-path: ${{ github.workspace }}
- name: Prepare Environment and Version
id: prepare
run: |
git config user.name s-github-actions
git config user.email [email protected]
echo "branch_name=release/${{ inputs.version }}" >> $GITHUB_OUTPUT
- name: Prepare Release
id: prepare_release
run: |
cd code
git checkout -b ${{ steps.prepare.outputs.branch_name }}
chmod a+x ../gradlew && ../gradlew --no-daemon versionsSet -Pversion=${{ inputs.version }}
git add gradle.properties ../gradlew
git commit -m "chore: prepare release ${{ inputs.version }}"
git push --set-upstream origin ${{ steps.prepare.outputs.branch_name }}
- name: Build and Publish
env:
ARTYLAB_USER: ${{ secrets.SONATYPE_USERNAME }}
ARTYLAB_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
GPG_PASSPHRASE: ${{ secrets.GPG_PRIVATE_KEY_PASSPHRASE }}
run: |
echo "Publishing version ${{ inputs.version }}"
cd code
../gradlew --no-daemon clean jar build publish -Pversion=${{ inputs.version }}