-
Notifications
You must be signed in to change notification settings - Fork 24
201 lines (171 loc) · 6.02 KB
/
create-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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
name: Build release
on:
push:
branches:
- 'v3-main'
paths-ignore:
- 'logo/**'
- 'docs/**'
- 'CHANGELOG.md'
- 'README**.md'
- 'Dockerfile'
jobs:
check-version:
runs-on: ubuntu-latest
outputs:
release-version: ${{ steps.version-step.outputs.version }}
steps:
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '21'
- name: Checkout Eno repo
uses: actions/checkout@v4
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
- name: Get Eno Version
id: version-step
run: |
./gradlew # (load the gradle wrapper, required for the get version step)
echo "version=$(./gradlew printVersion --console=plain -q)" >> $GITHUB_OUTPUT
- name: Print Eno Version
run: echo ${{ steps.version-step.outputs.version }}
- uses: mukunku/[email protected]
name: Check tag existence
id: check-tag-exists
with:
tag: ${{ steps.version-step.outputs.version }}
- name: Tag verification
id: check-tag
run: |
if [[ "${{ steps.check-tag-exists.outputs.exists }}" == "true" ]]; then
echo "Nothing to tag/release, the tag ${{ steps.version-step.outputs.version }} already exists"
exit 1
fi
if ! [[ "${{ steps.version-step.outputs.version }}" =~ ^[0-9]+.[0-9]+.[0-9]+$ ]]; then
echo "Nothing to tag/release, the tag ${{ steps.version-step.outputs.version }} is not in correct format X.Y.Z"
exit 1
fi
sonar:
name: Sonar analysis
runs-on: ubuntu-latest
steps:
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: 21
distribution: 'temurin'
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Cache SonarCloud packages
uses: actions/cache@v4
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar
- name: Cache Gradle packages
uses: actions/cache@v4
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
restore-keys: ${{ runner.os }}-gradle
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
- name: Build and analyze
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_HOST_URL: "https://sonarcloud.io"
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: ./gradlew clean build sonar -Dsonar.projectKey=InseeFr_Eno -Dsonar.organization=inseefr
build-sources:
needs: sonar
runs-on: ubuntu-latest
steps:
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '21'
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
- uses: actions/checkout@v4
- name: Build Eno modules
run: |
./gradlew build -x test
mv ./eno-ws/build/libs/*.jar ./eno-ws/build/libs/eno-ws.jar
- name: Upload Eno-WS jar
uses: actions/upload-artifact@v4
with:
name: eno-ws-jar
path: ./eno-ws/build/libs/eno-ws.jar
create-release:
needs: [ check-version, build-sources ]
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.ref }}
fetch-depth: 0
token: ${{ secrets.GITHUB_TOKEN }}
- name: Get previous final release tag
id: previousTag
run: echo "previousTag=$(git --no-pager tag --sort=creatordate --merged ${{ github.ref_name }} | grep "^[3-9]\.[0-9]\+\.[0-9]\+$" | tail -1)" >> $GITHUB_OUTPUT
# Note: the regex works for single digit major version, to be updated if the version goes 10.0.0 or more
- name: Create tag
uses: rickstaa/action-create-tag@v1
with:
tag: ${{ needs.check-version.outputs.release-version }}
- name: Create release note
id: changelog
uses: requarks/changelog-action@v1
with:
fromTag: ${{ needs.check-version.outputs.release-version }}
toTag: ${{ steps.previousTag.outputs.previousTag}}
excludeTypes: docs,style,chore,other
token: ${{ secrets.GITHUB_TOKEN }}
writeToFile: true
changelogFilePath: 'CHANGELOG.md'
- name: Commit changelog file
uses: stefanzweifel/git-auto-commit-action@v5
with:
branch: 'v3-main'
commit_message: 'docs(changelog): ${{ needs.check-version.outputs.release-version }} update [skip ci]'
file_pattern: 'CHANGELOG.md'
- name: Download build
id: download
uses: actions/download-artifact@v4
with:
name: eno-ws-jar
path: eno-ws/build/libs/
- name: Create GitHub release
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ needs.check-version.outputs.release-version }}
target_commitish: ${{ github.head_ref || github.ref }}
name: ${{ needs.check-version.outputs.release-version }}
body: ${{steps.changelog.outputs.changes}}
files: eno-ws/build/libs/eno-ws.jar
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
publish-docker:
needs: [ check-version, build-sources ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Download Eno-WS jar
uses: actions/download-artifact@v4
with:
name: eno-ws-jar
path: ./eno-ws/build/libs
- name: Publish to Docker Hub
uses: elgohr/Publish-Docker-Github-Action@v5
with:
name: inseefr/eno-ws
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
default_branch: ${{ github.ref }}
tags: "latest,${{ needs.check-version.outputs.release-version }}"