-
-
Notifications
You must be signed in to change notification settings - Fork 0
172 lines (155 loc) · 5.46 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
166
167
168
169
170
171
172
name: Release
on:
push:
tags:
- '*'
pull_request:
branches:
- master
- stage
jobs:
non_module_java:
runs-on: ${{ matrix.os }}
timeout-minutes: 30
strategy:
fail-fast: false
max-parallel: 4
matrix:
java: [ '8' ]
architecture: [ 'x64', 'x86' ]
os: [ ubuntu-latest, windows-latest, macOS-latest ]
name: Build with JDK ${{ matrix.java }} on ${{ matrix.architecture }} with ${{ matrix.os }}
steps:
- name: Prepare git
run: git config --global core.autocrlf false
- name: Checkout repository
uses: actions/checkout@master
with:
submodules: "recursive"
fetch-depth: 2
- name: Setup JDK ${{ matrix.java }}
uses: actions/setup-java@v1
with:
java-package: jdk
java-version: ${{ matrix.java }}
architecture: ${{ matrix.architecture }}
- name: Build project
run: |
zip --junk-paths document-generator-ws README.md
- name: Create checksum
run: echo ${{ github.sha }} > checksum.txt
- name: Version number
id: version_number
run: |
if [ ${{ startsWith(github.ref, 'refs/tags/') }} = true ]; then
VERSION=$(basename ${{ github.ref }})
else
VERSION=ci-latest-$(basename ${{ github.ref }})
PREV_RELEASE=$(curl -s https://api.github.com/repos/$GITHUB_REPOSITORY/releases/tags/$VERSION | jq -r .url)
# Reset ci-latest tag
git config --global user.email "[email protected]"
git config --global user.name "Github CI"
# Workaround for "could not read Username for 'https://github.com': No such device or address"
git remote set-url origin https://$GITHUB_ACTOR:[email protected]/$GITHUB_REPOSITORY.git
git tag -d $VERSION || true
git push origin :$VERSION || true
git tag -m $VERSION $VERSION
git push --tags
fi
echo "##[set-output name=version;]$VERSION"
echo "##[set-output name=prev_release;]${PREV_RELEASE/null/}"
env:
# This token is provided by Actions, you do not need to create your own token.
# The token is only valid for one hour.
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Create release
id: create_release
uses: actions/create-release@v1
timeout-minutes: 20
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ steps.version_number.outputs.version }}
release_name: ${{ github.ref }}
files: |
checksum.txt
LICENSE
README.md
body: |
Changes in this Release
- Updates on WebDocs MicroService API
draft: true
prerelease: ${{ !startsWith(github.ref, 'refs/tags/') }}
- name: Upload release asset
id: upload-release-asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./document-generator-ws.zip
asset_name: document-generator-ws.zip
asset_content_type: application/zip
# - name: Delete previous release
# run: |
# curl -s -H "authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" \
# -X DELETE ${{ steps.version_number.outputs.prev_release }}
# if: steps.version_number.outputs.prev_release != ''
module_java:
runs-on: ${{ matrix.os }}
timeout-minutes: 30
strategy:
fail-fast: false
max-parallel: 4
matrix:
java: [ '11', '12', '13', '14', '15-ea', '16-ea' ]
architecture: [ 'x64', 'x86' ]
os: [ ubuntu-latest, windows-latest, macOS-latest ]
name: Build with JDK ${{ matrix.java }} on ${{ matrix.architecture }} with ${{ matrix.os }}
steps:
- name: Prepare git
run: git config --global core.autocrlf false
- name: Checkout repository
uses: actions/checkout@master
with:
submodules: "recursive"
fetch-depth: 2
- name: Setup JDK ${{ matrix.java }}
uses: actions/setup-java@v1
with:
java-package: jdk
java-version: ${{ matrix.java }}
architecture: ${{ matrix.architecture }}
- name: Build project
run: |
zip --junk-paths document-generator-ws README.md
- name: Create checksum
run: echo ${{ github.sha }} > checksum.txt
- name: Create release
id: create_release
uses: actions/create-release@v1
timeout-minutes: 20
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}
files: |
checksum.txt
LICENSE
README.md
body: |
Changes in this Release
- Updates on WebDocs MicroService API
draft: true
prerelease: false
- name: Upload release asset
id: upload-release-asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./document-generator-ws.zip
asset_name: document-generator-ws.zip
asset_content_type: application/zip