-
-
Notifications
You must be signed in to change notification settings - Fork 24
157 lines (135 loc) · 5.01 KB
/
Release.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
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
name: CI
on:
workflow_dispatch:
inputs:
release-tag:
description: Tag
required: true
release-name:
description: The name for Release
required: true
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
BuildBinaries:
name: Build application packages
strategy:
matrix:
runtime: [ linux-x64, win-x64, android ]
include:
- runtime: linux-x64
arch: x64
os: ubuntu-latest
shell: bash
build: :desktop:packageUberJarForCurrentOS :desktop:packageDeb
setupCl: ./.github/scripts/SetupClUnix.sh
# - runtime: linux-fedora-x64
# arch: x64
# os: ubuntu-latest
# shell: bash
# build: :desktop:packageRpm
# setupCl: ./.github/scripts/SetupClUnix.sh
- runtime: win-x64
arch: x64
os: windows-latest
shell: powershell
build: :desktop:packageUberJarForCurrentOS :desktop:packageMsi
setupCl: ./.github/scripts/SetupClWindows.ps1
- runtime: android
arch: x64
os: ubuntu-latest
shell: bash
build: :android:assembleStandardRelease
setupCl: ./.github/scripts/SetupClUnix.sh
runs-on: ${{ matrix.os }}
timeout-minutes: 60
defaults:
run:
shell: ${{ matrix.shell }}
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-java@v3
if: ${{ matrix.runtime != 'linux-fedora-x64' }}
with:
java-version: 17
distribution: adopt
architecture: ${{ matrix.arch }}
- name: Setup Cl
run: ${{ matrix.setupCl }}
- name: Build rpm Package
if: ${{ matrix.runtime == 'linux-fedora-x64' }}
uses: Syer10/Fedora-Java17-Action@v1
with:
command: ./gradlew ${{ matrix.build }} --stacktrace
- name: Build
if: ${{ matrix.runtime != 'linux-fedora-x64' }}
uses: gradle/gradle-build-action@v2
with:
arguments: >
${{ matrix.build }}
- name: Sign APK
uses: r0adkll/sign-android-release@v1
if: ${{ matrix.runtime == 'android' }}
with:
releaseDirectory: android/build/outputs/apk/standard/release
signingKeyBase64: ${{ secrets.SIGNING_KEY }}
alias: ${{ secrets.ALIAS }}
keyStorePassword: ${{ secrets.KEY_STORE_PASSWORD }}
keyPassword: ${{ secrets.KEY_PASSWORD }}
env:
BUILD_TOOLS_VERSION: "30.0.2
# Upload runner package tar.gz/zip as artifact
- name: Publish Artifact
uses: actions/upload-artifact@v3
with:
name: runner-package-${{ matrix.runtime }}
path: |
desktop/build/compose/binaries/main/*/
desktop/build/compose/jars/
!desktop/build/compose/binaries/main/app/
- name: Publish Android Artifact
if: ${{ matrix.runtime == 'android' }}
uses: actions/upload-artifact@v3
with:
name: runner-package-${{ matrix.runtime }}
path: |
android/build/outputs/apk/standard/release/android-standard-universal-release-unsigned-signed.apk
android/build/outputs/apk/standard/release/android-standard-arm64-v8a-release-unsigned-signed.apk
android/build/outputs/apk/standard/release/android-standard-armeabi-v7a-release-unsigned-signed.apk
android/build/outputs/apk/standard/release/android-standard-x86-release-unsigned-signed.apk
android/build/outputs/apk/standard/release/android-standard-x86_64-release-unsigned-signed.apk
# Upload runner errors
- name: Upload error logs
uses: actions/upload-artifact@v3
if: ${{ failure() }}
with:
name: runner-errors-${{ matrix.runtime }}
path: |
desktop/build/compose/logs/
ReleaseBinaries:
name: Make a release
needs: [ BuildBinaries ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Download Build Artifacts
uses: actions/download-artifact@v3
- name: Fix deb java dependency
run: ./.github/scripts/DebDependencyFix.sh
- name: Fix filenames
run: ./.github/scripts/NamingFix.sh
- uses: ncipollo/release-action@v1
with:
artifacts: "*/binaries/main/*/*.*,*/jars/*.jar,*/android-standard-universal-release-unsigned-signed.apk,*/android-standard-arm64-v8a-release-unsigned-signed.apk,*/android-standard-armeabi-v7a-release-unsigned-signed.apk,*/android-standard-x86-release-unsigned-signed.apk,*/android-standard-x86_64-release-unsigned-signed.apk"
draft: true
token: ${{ secrets.WINGET_PUBLISH_PAT }}
allowUpdates: true
tag: ${{ github.event.inputs.release-tag }}
name: ${{ github.event.inputs.release-name }}
body: |
### Changelog