-
Notifications
You must be signed in to change notification settings - Fork 11
115 lines (113 loc) · 5.16 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
on:
push:
branches:
- master
env:
JAVA_VERSION: 23.0.1+11
GRADLE_OPTS: -Dorg.gradle.daemon=false
jobs:
release:
strategy:
fail-fast: true
matrix:
os: [windows-latest, ubuntu-latest, ubuntu-24.04-arm]
runs-on: ${{ matrix.os }}
steps:
- name: Setup Platform Variables
id: platform_variables
shell: bash
run: |
case ${{ matrix.os }} in
windows-latest)
echo jdk_os=windows >> $GITHUB_OUTPUT
echo jdk_arch=x64 >> $GITHUB_OUTPUT
echo jdk_archive_type=zip >> $GITHUB_OUTPUT
echo dist_os=windows >> $GITHUB_OUTPUT
echo dist_arch=x86-64 >> $GITHUB_OUTPUT
echo dist_archive_extension=zip >> $GITHUB_OUTPUT
;;
ubuntu-latest)
echo jdk_os=linux-glibc >> $GITHUB_OUTPUT
echo jdk_arch=x64 >> $GITHUB_OUTPUT
echo jdk_archive_type=tar.gz >> $GITHUB_OUTPUT
echo dist_os=linux >> $GITHUB_OUTPUT
echo dist_arch=x86-64 >> $GITHUB_OUTPUT
echo dist_archive_extension=tgz >> $GITHUB_OUTPUT
;;
ubuntu-24.04-arm)
echo jdk_os=linux-glibc >> $GITHUB_OUTPUT
echo jdk_arch=aarch64 >> $GITHUB_OUTPUT
echo jdk_archive_type=tar.gz >> $GITHUB_OUTPUT
echo dist_os=linux >> $GITHUB_OUTPUT
echo dist_arch=aarch64 >> $GITHUB_OUTPUT
echo dist_archive_extension=tgz >> $GITHUB_OUTPUT
;;
*)
exit 1
;;
esac
- 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=${{ steps.platform_variables.outputs.jdk_os }}&arch=${{ steps.platform_variables.outputs.jdk_arch }}&archive_type=${{ steps.platform_variables.outputs.jdk_archive_type }}&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 ZIP
if: runner.os == 'Windows'
run: ./gradlew distZip --info
- name: Build TGZ
if: runner.os == 'Linux'
run: ./gradlew distTar --info
- name: Extract Release Variables
id: release_variables
shell: bash
run: |
echo "tag_name=$(find build/distributions/ControllerBuddy-*.${{ steps.platform_variables.outputs.dist_archive_extension }} -maxdepth 1 -print0 | xargs -0 -I filename basename -s .${{ steps.platform_variables.outputs.dist_archive_extension }} filename | sed "s/^ControllerBuddy-//;s/${{ steps.platform_variables.outputs.dist_os }}-${{ steps.platform_variables.outputs.dist_arch }}-//")" >> $GITHUB_OUTPUT
echo "archive_path=$(find build/distributions/ControllerBuddy-*.${{ steps.platform_variables.outputs.dist_archive_extension }} -maxdepth 1 -print0)" >> $GITHUB_OUTPUT
- name: Check Tag
uses: action-pack/tag-exists@v1
id: check_tag
with:
tag: ${{ steps.release_variables.outputs.tag_name }}
- name: Tag Commit
if: steps.check_tag.outputs.exists == 'false'
uses: tvdias/[email protected]
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ steps.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.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.release_variables.outputs.archive_path }}
echo "signature_path=$signature_path" >> $GITHUB_OUTPUT
- name: Release
id: release
uses: softprops/action-gh-release@v2
with:
name: ControllerBuddy-${{ steps.release_variables.outputs.tag_name }}
tag_name: ${{ steps.release_variables.outputs.tag_name }}
draft: false
prerelease: false
files: |
${{ steps.release_variables.outputs.archive_path }}
${{ steps.sign_archive.outputs.signature_path }}