-
Notifications
You must be signed in to change notification settings - Fork 10
121 lines (119 loc) · 5.53 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
on:
push:
branches:
- master
env:
JAVA_VERSION: 23.0.0+37
GRADLE_OPTS: -Dorg.gradle.daemon=false
jobs:
windows:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
persist-credentials: false
submodules: true
- name: Download Zulu (without CRaC)
id: download_zulu
shell: bash
run: |
cd $RUNNER_TEMP
jdk_archive_filename=$(curl -LOs -w '%{filename_effective}' "$(curl -s -X GET 'https://api.azul.com/metadata/v1/zulu/packages/?os=windows&arch=x64&archive_type=zip&java_package_type=jdk&javafx_bundled=false&crac_supported=false&release_status=ga&availability_types=CA&certifications=tck' --data-urlencode "java_version=$JAVA_VERSION" -H 'accept: application/json' | jq -r '.[0].download_url')")
echo "jdk_archive_filename=$jdk_archive_filename" >> $GITHUB_OUTPUT
- name: Install JDK
uses: actions/setup-java@v4
with:
distribution: jdkfile
jdkFile: ${{ runner.temp }}/${{ steps.download_zulu.outputs.jdk_archive_filename }}
java-version: ${{ env.JAVA_VERSION }}
- name: Build
run: ./gradlew distZip --info
- name: Extract Release Variables
id: extract_release_variables
shell: bash
run: |
echo "tag_name=$(find build/distributions/ControllerBuddy-*.zip -maxdepth 1 -print0 | xargs -0 -I filename basename -s .zip filename | sed s/-windows-x86-64//)" >> $GITHUB_OUTPUT
echo "archive_path=$(find build/distributions/ControllerBuddy-*.zip -maxdepth 1 -print0)" >> $GITHUB_OUTPUT
- name: Tag Commit
uses: tvdias/[email protected]
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ steps.extract_release_variables.outputs.tag_name }}
- name: Import GPG Key
uses: crazy-max/ghaction-import-gpg@v6
with:
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.GPG_PRIVATE_KEY_PASSPHRASE }}
- name: Sign Archive
id: sign_archive
shell: bash
run: |
signature_path="${{ steps.extract_release_variables.outputs.archive_path }}.sig"
gpg --local-user 8590BB74C0F559F8AC911C1D8058553A1FD36B23 --pinentry-mode loopback --passphrase ${{ secrets.GPG_PRIVATE_KEY_PASSPHRASE }} --detach-sig --output "$signature_path" --yes ${{ steps.extract_release_variables.outputs.archive_path }}
echo "signature_path=$signature_path" >> $GITHUB_OUTPUT
- name: Release
id: release
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ steps.extract_release_variables.outputs.tag_name }}
draft: false
prerelease: false
files: |
${{ steps.extract_release_variables.outputs.archive_path }}
${{ steps.sign_archive.outputs.signature_path }}
linux:
needs: windows
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
persist-credentials: false
submodules: true
- name: Download Zulu (without CRaC)
id: download_zulu
shell: bash
run: |
cd $RUNNER_TEMP
jdk_archive_filename=$(curl -LOs -w '%{filename_effective}' "$(curl -s -X GET 'https://api.azul.com/metadata/v1/zulu/packages/?os=linux&arch=x64&archive_type=tar.gz&java_package_type=jdk&javafx_bundled=false&crac_supported=false&release_status=ga&availability_types=CA&certifications=tck' --data-urlencode "java_version=$JAVA_VERSION" -H 'accept: application/json' | jq -r '.[0].download_url')")
echo "jdk_archive_filename=$jdk_archive_filename" >> $GITHUB_OUTPUT
- name: Install JDK
uses: actions/setup-java@v4
with:
distribution: jdkfile
jdkFile: ${{ runner.temp }}/${{ steps.download_zulu.outputs.jdk_archive_filename }}
java-version: ${{ env.JAVA_VERSION }}
- name: Build
run: ./gradlew distTar --info
- name: Extract Release Variables
id: extract_release_variables
shell: bash
run: |
echo "tag_name=$(find build/distributions/ControllerBuddy-*.tgz -maxdepth 1 -print0 | xargs -0 -I filename basename -s .tgz filename | sed s/-linux-x86-64//)" >> $GITHUB_OUTPUT
echo "archive_path=$(find build/distributions/ControllerBuddy-*.tgz -maxdepth 1 -print0)" >> $GITHUB_OUTPUT
- name: Import GPG Key
uses: crazy-max/ghaction-import-gpg@v6
with:
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.GPG_PRIVATE_KEY_PASSPHRASE }}
- name: Sign Archive
id: sign_archive
shell: bash
run: |
signature_path="${{ steps.extract_release_variables.outputs.archive_path }}.sig"
gpg --local-user 8590BB74C0F559F8AC911C1D8058553A1FD36B23 --pinentry-mode loopback --passphrase ${{ secrets.GPG_PRIVATE_KEY_PASSPHRASE }} --detach-sig --output "$signature_path" --yes ${{ steps.extract_release_variables.outputs.archive_path }}
echo "signature_path=$signature_path" >> $GITHUB_OUTPUT
- name: Release
id: release
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ steps.extract_release_variables.outputs.tag_name }}
draft: false
prerelease: false
generate_release_notes: true
files: |
${{ steps.extract_release_variables.outputs.archive_path }}
${{ steps.sign_archive.outputs.signature_path }}