-
-
Notifications
You must be signed in to change notification settings - Fork 52
165 lines (160 loc) · 5.52 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
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
158
159
160
161
162
163
164
165
name: Release Build
on:
push:
tags:
- '**'
jobs:
build_linux_x86_64:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: nightly
- run: cargo install cargo-kotars --git https://github.com/JetpackDuba/kotars
- run: cargo install cross
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'corretto'
architecture: x64
- name: Build with Gradle
uses: gradle/gradle-build-action@67421db6bd0bf253fb4bd25b31ebb98943c375e1
with:
arguments: fatJarLinux -PuseCross=true -PisLinuxAarch64=false
- name: Generate SHA256 Checksum
working-directory: ./build/libs
run: find . -type f -exec bash -c "sha256sum {} > {}.sum " \;
- name: Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
body: "Beta release"
prerelease: true
draft: true
repository: JetpackDuba/Gitnuro
with:
files: |
build/libs/Gitnuro-linux-x86_64-*.jar
build/libs/Gitnuro-linux-x86_64-*.jar.sum
token: ${{ secrets.CUSTOM_GITHUB_TOKEN }}
build_linux_aarch64:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: nightly
- run: cargo install cargo-kotars --git https://github.com/JetpackDuba/kotars
- run: cargo install cross
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'corretto'
architecture: x64
- name: Build with Gradle
uses: gradle/gradle-build-action@67421db6bd0bf253fb4bd25b31ebb98943c375e1
with:
arguments: fatJarLinux -PuseCross=true -PisLinuxAarch64=true
- name: Generate SHA256 Checksum
working-directory: ./build/libs
run: find . -type f -exec bash -c "sha256sum {} > {}.sum " \;
- name: Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
body: "Beta release"
prerelease: true
draft: true
repository: JetpackDuba/Gitnuro
with:
files: |
build/libs/Gitnuro-linux-x86_64-*.jar
build/libs/Gitnuro-linux-x86_64-*.jar.sum
token: ${{ secrets.CUSTOM_GITHUB_TOKEN }}
build_windows:
runs-on: windows-latest
steps:
- name: Print Tag
run: echo ${{github.ref_name}}
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: nightly
- run: cargo install cargo-kotars --git https://github.com/JetpackDuba/kotars
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'corretto'
architecture: x64
- name: Build with Gradle
uses: gradle/gradle-build-action@67421db6bd0bf253fb4bd25b31ebb98943c375e1
with:
arguments: createDistributable
- name: Compile .ISS to .EXE Installer
uses: Minionguyjpro/[email protected]
with:
path: gitnuro.iss
options: /O+ /DMyAppVersion="${{github.ref_name}}"
- name: Windows portable ZIP
run: Compress-Archive -Path build/compose/binaries/main/app/Gitnuro/* -Destination Output/Gitnuro_Windows_Portable_${{github.ref_name}}.zip
- name: Generate SHA256 Checksum
shell: bash
working-directory: ./Output/
run: find -type f -exec bash -c "sha256sum {} > {}.sum " \;
- name: Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
body: "Beta release"
prerelease: true
draft: true
repository: JetpackDuba/Gitnuro
with:
files: |
Output/Gitnuro*.exe
Output/Gitnuro*.sum
Output/Gitnuro*.zip
token: ${{ secrets.CUSTOM_GITHUB_TOKEN }}
# build_macos:
# runs-on: macos-latest
# steps:
# - uses: actions/checkout@v3
# - uses: dtolnay/rust-toolchain@stable
# with:
# toolchain: nightly
# - run: cargo install cargo-kotars --git https://github.com/JetpackDuba/kotars
# - name: Set up JDK 17
# uses: actions/setup-java@v3
# with:
# java-version: '17'
# distribution: 'corretto'
# architecture: x64
# - name: Build with Gradle
# uses: gradle/gradle-build-action@67421db6bd0bf253fb4bd25b31ebb98943c375e1
# with:
# arguments: createDistributable
# - name: Create output directory
# run: mkdir Output
# - name: MacOS DMG
# working-directory: build/compose/binaries/main/app/
# run: zip -r ../../../../../Output/Gitnuro_macos_${{github.ref_name}}.zip .
# - name: Generate SHA256 Checksum
# working-directory: ./Output/
# run: find . -type f -exec bash -c "shasum -a 256 {} > {}.sum " \;
# - name: Release
# uses: softprops/action-gh-release@v2
# if: startsWith(github.ref, 'refs/tags/')
# with:
# body: "Beta release"
# prerelease: true
# draft: true
# repository: JetpackDuba/Gitnuro
# with:
# files: |
# Output/Gitnuro*.zip
# Output/Gitnuro*.sum
# token: ${{ secrets.CUSTOM_GITHUB_TOKEN }}