-
Notifications
You must be signed in to change notification settings - Fork 11
175 lines (173 loc) · 6.53 KB
/
github-release-workflow.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
166
167
168
169
170
171
172
173
174
175
name: Github Release Workflow
on:
push:
tags:
- "[0-9]+.[0-9]+.[0-9]+"
branches-ignore:
- "**"
jobs:
deploy:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Download JDK Large Linux
if: startsWith(matrix.os, 'ubuntu')
run: |
download_url="https://github.com/AdoptOpenJDK/openjdk11-binaries/releases/download/jdk-11.0.10%2B9_openj9-0.24.0/OpenJDK11U-jdk_x64_linux_openj9_linuxXL_11.0.10_9_openj9-0.24.0.tar.gz"
curl -L $download_url -o $RUNNER_TEMP/java_package.tar.gz
- name: Download JDK Large macOS
if: startsWith(matrix.os, 'macos')
run: |
download_url="https://github.com/AdoptOpenJDK/openjdk11-binaries/releases/download/jdk-11.0.10%2B9_openj9-0.24.0/OpenJDK11U-jdk_x64_mac_openj9_macosXL_11.0.10_9_openj9-0.24.0.tar.gz"
curl -L $download_url -o $RUNNER_TEMP/java_package.tar.gz
- name: Download JDK Large Windows
if: startsWith(matrix.os, 'windows')
run: |
curl -L "https://github.com/AdoptOpenJDK/openjdk11-binaries/releases/download/jdk-11.0.10%2B9_openj9-0.24.0/OpenJDK11U-jdk_x64_windows_openj9_windowsXL_11.0.10_9_openj9-0.24.0.zip" -o java_package.zip
- name: Set up JDK 11 Linux and macOS
if: startsWith(matrix.os, 'ubuntu') || startsWith(matrix.os, 'macos')
uses: actions/setup-java@v2
with:
distribution: 'jdkfile'
jdkFile: ${{ runner.temp }}/java_package.tar.gz
java-version: '11.0.0'
architecture: x64
- name: Set up JDK 11 Windows
if: startsWith(matrix.os, 'windows')
uses: actions/setup-java@v2
with:
distribution: 'jdkfile'
jdkFile: java_package.zip
java-version: '11.0.0'
architecture: x64
- name: Download JDK 11
run: bash -c ".github/workflows/scripts/downloadJDK.sh"
env:
OS: ${{ matrix.os }}
- name: Setup pom version
run: mvn versions:set -DnewVersion='${{ github.ref_name }}'
- name: Build Jar
run: mvn --batch-mode clean package
- name: Build Linux
if: startsWith(matrix.os, 'ubuntu')
run: mvn --batch-mode package -P build-linux
- name: Build Windows
if: startsWith(matrix.os, 'windows')
run: mvn --batch-mode package -P build-windows
- name: Build macOS
if: startsWith(matrix.os, 'macos')
run: mvn --batch-mode package -P build-macos
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: artifact
path: |
target/*.deb
target/*.rpm
target/*/*.app
target/*.dmg
target/*.exe
retention-days: 1
- name: Release to GitHub
uses: softprops/action-gh-release@v1
with:
name: Version ${{ github.ref_name }}
tag_name: ${{ github.ref_name }}
draft: true
files: |
target/*.deb
target/*.rpm
target/*.dmg
target/*.exe
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
deploy-hu:
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Download JDK Large Linux
if: startsWith(matrix.os, 'ubuntu')
run: |
download_url="https://github.com/AdoptOpenJDK/openjdk11-binaries/releases/download/jdk-11.0.10%2B9_openj9-0.24.0/OpenJDK11U-jdk_x64_linux_openj9_linuxXL_11.0.10_9_openj9-0.24.0.tar.gz"
curl -L $download_url -o $RUNNER_TEMP/java_package.tar.gz
- name: Download JDK Large macOS
if: startsWith(matrix.os, 'macos')
run: |
download_url="https://github.com/AdoptOpenJDK/openjdk11-binaries/releases/download/jdk-11.0.10%2B9_openj9-0.24.0/OpenJDK11U-jdk_x64_mac_openj9_macosXL_11.0.10_9_openj9-0.24.0.tar.gz"
curl -L $download_url -o $RUNNER_TEMP/java_package.tar.gz
- name: Download JDK Large Windows
if: startsWith(matrix.os, 'windows')
run: |
curl -L "https://github.com/AdoptOpenJDK/openjdk11-binaries/releases/download/jdk-11.0.10%2B9_openj9-0.24.0/OpenJDK11U-jdk_x64_windows_openj9_windowsXL_11.0.10_9_openj9-0.24.0.zip" -o java_package.zip
- name: Set up JDK 11 Linux and macOS
if: startsWith(matrix.os, 'ubuntu') || startsWith(matrix.os, 'macos')
uses: actions/setup-java@v2
with:
distribution: 'jdkfile'
jdkFile: ${{ runner.temp }}/java_package.tar.gz
java-version: '11.0.0'
architecture: x64
- name: Set up JDK 11 Windows
if: startsWith(matrix.os, 'windows')
uses: actions/setup-java@v2
with:
distribution: 'jdkfile'
jdkFile: java_package.zip
java-version: '11.0.0'
architecture: x64
- name: Download JDK 11
run: bash -c ".github/workflows/scripts/downloadJDK.sh"
env:
OS: ${{ matrix.os }}
- name: Setup pom version
run: mvn versions:set -DnewVersion='${{ github.ref_name }}'
- name: Build Jar
run: mvn --batch-mode clean package -P hu
- name: Build Linux
if: startsWith(matrix.os, 'ubuntu')
run: mvn --batch-mode package -P build-linux -D jar.id=-hu
- name: Build Windows
if: startsWith(matrix.os, 'windows')
run: mvn --batch-mode package -P build-windows -D jar.id=-hu
- name: Build macOS
if: startsWith(matrix.os, 'macos')
run: mvn --batch-mode package -P build-macos -D jar.id=-hu
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: artifact
path: |
target/*.deb
target/*.rpm
target/*.dmg
target/*.exe
retention-days: 1
- name: Release to GitHub
uses: softprops/action-gh-release@v1
with:
name: Version ${{ github.ref_name }}
tag_name: ${{ github.ref_name }}
draft: true
files: |
target/*.deb
target/*.rpm
target/*.dmg
target/*.exe
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}