-
Notifications
You must be signed in to change notification settings - Fork 143
103 lines (98 loc) · 3.39 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
on:
push:
branches: [ master ]
jobs:
check-release-tag:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Prepare tag
id: prepare_tag
continue-on-error: true
run: |
export TAG=v$(awk '/^version = / { gsub("\"", ""); print $3 }' build.gradle)
echo "TAG=$TAG" >> $GITHUB_ENV
export CHECK_TAG=$(git tag | grep $TAG)
if [[ $CHECK_TAG ]]; then
echo "Skipping because release tag already exists"
exit 1
fi
- name: Output
id: release_output
if: ${{ steps.prepare_tag.outcome == 'success' }}
run: |
echo "::set-output name=tag::${{ env.TAG }}"
outputs:
tag: ${{ steps.release_output.outputs.tag }}
create-github-release:
runs-on: ubuntu-latest
needs: check-release-tag
if: ${{ needs.check-release-tag.outputs.tag }}
steps:
- uses: actions/checkout@v2
- name: Prepare tag
run: |
export TAG=v$(awk '/^version = / { gsub("\"", ""); print $3 }' build.gradle)
echo "TAG=$TAG" >> $GITHUB_ENV
- name: Setup git
run: |
git config user.email "[email protected]"
git config user.name "Pusher CI"
- name: Prepare description
run: |
csplit -s CHANGELOG.md "/##/" {1}
cat xx01 > CHANGELOG.tmp
- name: Create Release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ env.TAG }}
release_name: ${{ env.TAG }}
body_path: CHANGELOG.tmp
draft: false
prerelease: false
publish:
runs-on: ubuntu-latest
needs: create-github-release
steps:
- uses: actions/checkout@v2
- name: Create gradle.properties
shell: bash
run: |
mkdir -p _gradle_user_home
echo "GRADLE_USER_HOME=_gradle_user_home" >> $GITHUB_ENV
cat <<FILE > _gradle_user_home/gradle.properties
github.username=${{ secrets.PUSHER_CI_GITHUB_PRIVATE_TOKEN }}
github.password=""
maven.username=${{ secrets.MAVEN_USERNAME }}
maven.password=${{ secrets.MAVEN_PASSWORD }}
signing.keyId=${{ secrets.SIGNING_KEY_ID }}
signing.password=${{ secrets.SIGNING_PASSWORD }}
signing.secretKeyRingFile=_gradle_user_home/pusher-maven-gpg-signing-key.gpg
FILE
echo "${{ secrets.PUSHER_MAVEN_GPG_SIGNING_KEY }}" | base64 --decode > _gradle_user_home/pusher-maven-gpg-signing-key.gpg
- name: Publish
run: |
./gradlew publish
finish-release:
runs-on: ubuntu-latest
needs: publish
env:
NEXUS_USERNAME: ${{ secrets.MAVEN_USERNAME }}
NEXUS_PASSWORD: ${{ secrets.MAVEN_PASSWORD }}
steps:
- uses: actions/checkout@v2
- id: get_staging_repository_id
name: Get staging repository id
run: |
echo "staging_repository_id=$(python3 scripts/get_staging_repository_id.py)" >> $GITHUB_OUTPUT
- name: Release
uses: nexus-actions/release-nexus-staging-repo@main
with:
username: ${{ secrets.MAVEN_USERNAME }}
password: ${{ secrets.MAVEN_PASSWORD }}
staging_repository_id: ${{ steps.get_staging_repository_id.outputs.staging_repository_id }}