-
Notifications
You must be signed in to change notification settings - Fork 0
129 lines (116 loc) · 3.91 KB
/
publish-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
122
123
124
125
126
127
128
129
name: CI
on:
push:
# branches: [ "master" ]
tags:
- v*.*.*
jobs:
build-windows:
runs-on: windows-latest
permissions:
contents: read
steps:
# - name: Cancel previous runs
# uses: styfle/[email protected]
# with:
# access_token: ${{ secrets.ACCESS_TOKEN }}
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@417ae3ccd767c252f5661f1ace9f835f9654f2b5 # v3.1.0
- name: Build with Gradle Wrapper
run: ./gradlew packageReleaseDistributionForCurrentOS
env:
APP_VERSION_NAME: ${{ github.ref_name }}
- name: zip artifact
run: powershell -Command "Compress-Archive -Path 'composeApp\build\compose\binaries\main-release\app\Pixiv-MultiPlatform' -DestinationPath 'composeApp\build\compose\binaries\main-release\app\windows.zip'"
- name: Upload windows artifact
uses: actions/upload-artifact@v4
with:
name: windows.zip
path: composeApp\build\compose\binaries\main-release\app\windows.zip
build-linux:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
# - name: Cancel previous runs
# uses: styfle/[email protected]
# with:
# access_token: ${{ secrets.ACCESS_TOKEN }}
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@417ae3ccd767c252f5661f1ace9f835f9654f2b5 # v3.1.0
- name: Build with Gradle Wrapper
run: |
chmod +x ./gradlew
./gradlew packageReleaseDistributionForCurrentOS
env:
APP_VERSION_NAME: ${{ github.ref_name }}
- name: Zip artifact
run: tar -czvf linux.tar.gz composeApp/build/compose/binaries/main-release/app/*
- name: Upload linux artifact
uses: actions/upload-artifact@v4
with:
name: linux.tar.gz
path: linux.tar.gz
build-android:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
# - name: Cancel previous runs
# uses: styfle/[email protected]
# with:
# access_token: ${{ secrets.ACCESS_TOKEN }}
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@417ae3ccd767c252f5661f1ace9f835f9654f2b5 # v3.1.0
- name: Build with Gradle Wrapper
run: |
chmod +x ./gradlew
./gradlew assembleRelease
env:
APP_VERSION_NAME: ${{ github.ref_name }}
- name: Rename apk
run: |
mv composeApp/build/outputs/apk/release/composeApp-release.apk composeApp/build/outputs/apk/release/android.apk
- name: Upload APK
uses: actions/upload-artifact@v4
with:
name: android.apk
path: composeApp/build/outputs/apk/release/android.apk
create-release:
runs-on: ubuntu-latest
needs: [ build-windows, build-android, build-linux ]
steps:
- name: Download Artifact
uses: actions/download-artifact@v4
with:
path: build
- name: Show file list
run: ls -lR
- name: Create Release
uses: softprops/action-gh-release@v1
with:
tag_name: ${{ github.ref_name }}
files: |
build/windows.zip/windows.zip
build/android.apk/android.apk
build/linux.tar.gz/linux.tar.gz
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}