-
Notifications
You must be signed in to change notification settings - Fork 0
62 lines (52 loc) · 1.72 KB
/
pull-request.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
name: Release packaging
on:
pull_request:
branches:
- develop # To test
- master
jobs:
build-linux:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup JDK
# TODO: replace this once https://github.com/actions/setup-java/pull/637 gets merged.
uses: gmitch215/setup-java@6d2c5e1f82f180ae79f799f0ed6e3e5efb4e664d
with:
java-version: '17'
distribution: 'jetbrains'
- name: Package
run: |
./gradlew application:packageReleaseTarGz
./gradlew application:packageReleaseDeb
./gradlew application:packageReleaseRpm
- name: Prepare Artifacts
run: |
mkdir -p binaries
mv application/build/distribution/*.tar.gz binaries/
mv application/build/compose/binaries/main-release/deb/*.deb binaries/
mv application/build/compose/binaries/main-release/rpm/*.rpm binaries/
- name: Upload
uses: actions/upload-artifact@v4
with:
name: NeoRegex-linux-packages
path: binaries/*
build-windows:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup JDK
# TODO: replace this once https://github.com/actions/setup-java/pull/637 gets merged.
uses: gmitch215/setup-java@6d2c5e1f82f180ae79f799f0ed6e3e5efb4e664d
with:
java-version: '17'
distribution: 'jetbrains
- name: Package exe
run: ./gradlew application:packageReleaseExe
- name: Upload
uses: actions/upload-artifact@v4
with:
name: NeoRegex-windows-packages
path: application/build/distribution/*.exe