-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (37 loc) · 1.05 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
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
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'jetbrains'
- name: Linux packages
run: |
./gradlew application:createTarGz
./gradlew application:packageReleaseDeb
./gradlew application:packageReleaseRpm
- name: Upload .deb
uses: actions/upload-artifact@v4
with:
name: NeoRegex
path: application/build/compose/binaries/main-release/deb/*.deb
- name: Upload .rpm
uses: actions/upload-artifact@v4
with:
name: NeoRegex
path: application/build/compose/binaries/main-release/rpm/*.rpm
- name: Upload .tar.gz
uses: actions/upload-artifact@v4
with:
name: NeoRegex
path: application/build/distribution/*.tar.gz