-
Notifications
You must be signed in to change notification settings - Fork 0
180 lines (157 loc) · 5.6 KB
/
cd.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
name: CD
on:
push:
branches: [ "main" ]
jobs:
re-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
java-version: '21'
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn -B package --file app/pom.xml
re-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
java-version: '21'
distribution: 'temurin'
cache: maven
- name: Test with Maven
run: mvn test --file app/pom.xml
generate-release:
needs: [re-test, re-build]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Fetch all history and tags
- uses: graalvm/setup-graalvm@v1
with:
java-version: '21'
distribution: 'graalvm' # See 'Options' for all available distributions
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Debug step
run: |
echo "GRAALVM_HOME: $GRAALVM_HOME"
echo "JAVA_HOME: $JAVA_HOME"
java --version
native-image --version
# - name: Compile to native image
# run: |
# pwd
# ls
# mvn -Pnative native:compile --file app/pom.xml
- name: Set Git user
run: |
git config --global user.email "[email protected]"
git config --global user.name "GitHub Actions"
- name: Get previous tag
id: previous_tag
run: |
git fetch --tags
previous_tag=$(git describe --abbrev=0 --tags $(git rev-list --tags --max-count=1))
echo "PREVIOUS TAG => $previous_tag"
echo "::set-output name=previous_tag::$previous_tag"
- name: Determine next version
id: version
run: |
git fetch
last_tag=${{ steps.previous_tag.outputs.previous_tag }}
commit_range=$(git rev-list --abbrev-commit --reverse ${last_tag}..HEAD)
major=$(echo "$last_tag" | cut -d. -f1)
minor=$(echo "$last_tag" | cut -d. -f2)
patch=$(echo "$last_tag" | cut -d. -f3)
has_feat=false
has_breaking_change=false
for hash in $commit_range; do
subject=$(git log --format="%s" -n 1 $hash)
case "$subject" in
*'feat:'*)
echo "has_feat=true because of [$subject]"
has_feat=true
;;
*'BREAKING CHANGE:'*)
echo "has_breaking_change=true because of [$subject]"
has_breaking_change=true
;;
*)
echo "not feat not breaking change, commit -> [$subject]"
;;
esac
done
if [ "$has_breaking_change" = true ]; then
major=$((major + 1))
minor=0
patch=0
elif [ "$has_feat" = true ]; then
minor=$((minor + 1))
patch=0
else
patch=$((patch + 1))
fi
new_version="$major.$minor.$patch"
echo "NEW VERSION SHOULD BE => $new_version"
echo "::set-output name=new_version::$new_version"
- name: Create new tag
id: new_tag
if: steps.commits.outputs.new_version != '0.0.0'
run: git tag -a ${{ steps.version.outputs.new_version }} -m "Version ${{ steps.version.outputs.new_version }}"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Push new tag
if: steps.commits.outputs.new_version != '0.0.0'
run: git push origin ${{ steps.version.outputs.new_version }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Generate release notes
id: release_notes
run: |
git fetch
commit_range=$(git rev-list --abbrev-commit --reverse ${{ steps.previous_tag.outputs.previous_tag }}..HEAD)
echo "## What's changed" > release_notes.md
for hash in $commit_range; do
subject=$(git log --format="%s by @%an - %h" -n 1 $hash)
case "$subject" in
*'BREAKING CHANGE:'*)
echo "* **Breaking Change:** $(echo "$subject" | awk -F: '{print $2}')" >> release_notes.md
;;
*'feat:'*)
echo "* **Feature:** $(echo "$subject" | awk -F: '{print $2}')" >> release_notes.md
has_feat=true
;;
*'fix:'*)
echo "* **Fix:** $(echo "$subject" | awk -F: '{print $2}')" >> release_notes.md
;;
*)
echo "* $(echo "$subject" | awk -F: '{print $2}')" >> release_notes.md
;;
esac
done
echo "" >> release_notes.md
echo "" >> release_notes.md
echo "**Full Changelog**: https://github.com/buildrun-tech/brc-cli/commits/${{ steps.version.outputs.new_version }}" >> release_notes.md
continue-on-error: false
- name: Debug release notes
id: debug_release_notes
run: |
cat release_notes.md
continue-on-error: false
- name: Create Release
id: create_release
uses: softprops/action-gh-release@v1
with:
files: |
${{ github.workspace }}
tag_name: ${{ steps.version.outputs.new_version }}
release_name: Release ${{ steps.version.outputs.new_version }}
body_path: release_notes.md
token: ${{ secrets.GITHUB_TOKEN }}