-
Notifications
You must be signed in to change notification settings - Fork 4
135 lines (118 loc) · 4.37 KB
/
create-release.yaml
File metadata and controls
135 lines (118 loc) · 4.37 KB
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
name: Create tag and release
on:
push:
branches:
- main
pull_request:
branches: [ "main" ]
jobs:
check-version:
runs-on: ubuntu-latest
outputs:
release-tag: ${{ steps.version-step.outputs.newTag }}
should_run_next_job: ${{ steps.check-tag.outputs.should_continue }}
steps:
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '21'
- name: Checkout repo
uses: actions/checkout@v4
- name: Get source version
id: version-step
run: echo "newTag=v$(mvn -f pom.xml help:evaluate -Dexpression=project.version -q -DforceStdout)" >> $GITHUB_OUTPUT
- name: Print source version
run: echo ${{ steps.version-step.outputs.newTag }}
- uses: mukunku/tag-exists-action@v1.6.0
name: Check tag existence
id: check-tag-exists
with:
tag: ${{ steps.version-step.outputs.newTag }}
- 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.newTag }} already exists"
echo "should_continue=false" >> $GITHUB_OUTPUT
elif ! [[ "${{ steps.version-step.outputs.newTag }}" =~ ^v[0-9]+.[0-9]+.[0-9]+$ ]]; then
echo "Nothing to tag/release, the tag ${{ steps.version-step.outputs.newTag }} is not in correct format X.Y.Z"
echo "should_continue=false" >> $GITHUB_OUTPUT
else
echo "should_continue=true" >> $GITHUB_OUTPUT
fi
build-sources:
needs: check-version
runs-on: ubuntu-latest
steps:
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '21'
- name: Clone BPM
uses: actions/checkout@master
with:
repository: InseeFr/BPM
path: bpm
- name: Build BPM
run: |
cd bpm
mvn clean install --no-transfer-progress
cd ..
- uses: actions/checkout@v4
- name: Build app
run: mvn package --no-transfer-progress
- name: Upload app jar
uses: actions/upload-artifact@v4
with:
name: app-jar
path: target/*.jar
create-release:
needs: [ check-version, build-sources ]
if: needs.check-version.outputs.should_run_next_job == 'true'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.ref }}
fetch-depth: 0
- name: Get previous final release tag
id: previousTag
run: echo "previousTag=$(git --no-pager tag --sort=creatordate --merged ${{ github.ref_name }} | grep "^v[0-9]\+\.[0-9]\+\.[0-9]\+$" | tail -1)" >> $GITHUB_OUTPUT
- name: Extract content between titles
id: changeLogContent
run: |
FILE_PATH='CHANGELOG.md'
TITLE1="$(sed -n '/^## [0-9]/{p;}' $FILE_PATH | awk 'NR==1' | sed 's/\[/\\[/g; s/\]/\\]/g' | sed 's/^## //')"
TITLE2="$(sed -n '/^## [0-9]/{p;}' $FILE_PATH | awk 'NR==2' | sed 's/\[/\\[/g; s/\]/\\]/g' | sed 's/^## //')"
changes="$(sed -n '/^${TITLE1}/,/^${TITLE2}/{//!p}' $FILE_PATH)"
echo "TITLE1=${TITLE1}" >> $GITHUB_OUTPUT
echo "changes=${changes}" >> $GITHUB_OUTPUT
- uses: softprops/action-gh-release@v2
with:
tag_name: ${{ needs.check-version.outputs.release-tag }}
target_commitish: ${{ github.head_ref || github.ref }}
name: ${{steps.changeLogContent.outputs.TITLE1 }}
body: ${{steps.changeLogContent.outputs.changes}}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
publish-docker:
needs: [ check-version, create-release ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Download uploaded jar
uses: actions/download-artifact@v4
with:
name: app-jar
path: target/
- name: Publish to Docker Hub
uses: elgohr/Publish-Docker-Github-Action@v5
with:
name: inseefr/genesis-api
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
default_branch: ${{ github.ref }}
tags: ${{ needs.check-version.outputs.release-tag }}
workdir: .