-
Notifications
You must be signed in to change notification settings - Fork 69
112 lines (107 loc) · 4.16 KB
/
example.yml
File metadata and controls
112 lines (107 loc) · 4.16 KB
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
name: Build Example App
on:
push:
branches: [main]
paths-ignore:
- "README.md"
- "CLAUDE.md"
- "docs/**"
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, ubuntu-24.04-arm, windows-latest]
include:
- os: macos-latest
platform: macos arm64
build-command: ./gradlew packageDmgNativeReleaseMacosArm64
artifact-path: example/macos/build/compose/binaries/main/native-macosArm64-release-dmg/*.dmg
artifact-name: Miuix-darwin-arm64-dmg.dmg
archive: false
- os: ubuntu-latest
platform: linux x64
platformEx: android universal
build-command: ./gradlew createReleaseDistributable
build-commandEx: ./gradlew assembleDebug && ./gradlew assembleRelease
artifact-path: example/desktop/build/compose/binaries/main-release/app/Miuix
artifact-pathEx: example/android/build/outputs/apk/release/*.apk
artifact-name: Miuix-linux-x64-bin
artifact-nameEx: Miuix-android-universal-apk.apk
archive: true
- os: ubuntu-24.04-arm
platform: linux arm64
build-command: ./gradlew createReleaseDistributable
artifact-path: example/desktop/build/compose/binaries/main-release/app/Miuix
artifact-name: Miuix-linux-arm64-bin
archive: true
- os: windows-latest
platform: windows x64
build-command: ./gradlew createReleaseDistributable
artifact-path: example/desktop/build/compose/binaries/main-release/app/Miuix
artifact-name: Miuix-windows-x64-exe
archive: true
steps:
- name: Checkout Sources
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Setup JDK
uses: actions/setup-java@v5
with:
distribution: "zulu"
java-version: "21"
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v6
- name: Decode android signing key
if: matrix.platformEx == 'android universal'
run: echo ${{ secrets.SIGNING_KEY }} | base64 -d > keystore.jks
- name: Build ${{ matrix.platform }} platform
run: ${{ matrix.build-command }}
- name: Build ${{ matrix.platformEx }} platform
if: matrix.platformEx == 'android universal'
run: ${{ matrix.build-commandEx }}
env:
KEYSTORE_PATH: "../../keystore.jks"
KEYSTORE_PASS: ${{ secrets.KEY_STORE_PASSWORD }}
KEY_ALIAS: ${{ secrets.ALIAS }}
KEY_PASSWORD: ${{ secrets.KEY_PASSWORD }}
- name: Rename ${{ matrix.platform }} artifact
run: mv ${{ matrix.artifact-path }} ${{ matrix.artifact-name }}
shell: bash
- name: Rename ${{ matrix.platformEx }} artifact
if: matrix.platformEx == 'android universal'
run: mv ${{ matrix.artifact-pathEx }} ${{ matrix.artifact-nameEx }}
shell: bash
- name: Upload Miuix ${{ matrix.platform }} artifact
uses: actions/upload-artifact@v7
with:
name: ${{ matrix.artifact-name }}
path: ${{ matrix.artifact-name }}
archive: ${{ matrix.archive }}
- name: Upload Miuix ${{ matrix.platformEx }} artifact
if: matrix.platformEx == 'android universal'
uses: actions/upload-artifact@v7
with:
name: ${{ matrix.artifact-nameEx }}
path: ${{ matrix.artifact-nameEx }}
archive: false
post_telegram:
needs: build
runs-on: ubuntu-latest
if: ${{ success() && github.event_name != 'pull_request' && github.ref == 'refs/heads/main' && github.ref_type != 'tag' }}
steps:
- name: Checkout sources
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Download all artifacts
uses: actions/download-artifact@v8
with:
path: artifacts
- name: Post to Telegram ci channel
env:
CHANNEL_ID: ${{ secrets.CHANNEL_ID }}
BOT_TOKEN: ${{ secrets.BOT_TOKEN }}
BOT_API_LINK: ${{ secrets.BOT_API_LINK }}
run: bash .github/scripts/post_telegram.sh