-
Notifications
You must be signed in to change notification settings - Fork 3
234 lines (199 loc) · 7.34 KB
/
after_push_2.yaml
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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
name: After Push 2
on:
push:
branches:
- master
permissions:
contents: write
packages: write
concurrency:
group: ${{ github.workflow }}
jobs:
select_type:
if: contains('["onuratakan"]', github.actor)
runs-on: ubuntu-latest
outputs:
release_type: ${{ steps.any_type.outputs.release_type }}
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: any_type
id: any_type
run: |
commit_msg=$(git log --format=oneline -n 1 $GITHUB_SHA)
if [[ $commit_msg == *"Changed version number with"* ]]; then
echo "release_type=patch" >> "$GITHUB_OUTPUT"
elif [[ $commit_msg == *"[MINOR]" ]]; then
echo "release_type=minor" >> "$GITHUB_OUTPUT"
elif [[ $commit_msg == *"[MAJOR]" ]]; then
echo "release_type=major" >> "$GITHUB_OUTPUT"
else
echo "Commit message does not include 'Changed version number with', [MINOR], or [MAJOR]"
fi
check:
needs: select_type
runs-on: ubuntu-latest
steps:
- name: Print Type
env:
release_type: ${{ needs.select_type.outputs.release_type }}
run: echo "$release_type"
tagext:
needs: select_type
runs-on: ubuntu-latest
if: ${{ (needs.select_type.outputs.release_type == 'patch') || (needs.select_type.outputs.release_type == 'minor') || (needs.select_type.outputs.release_type == 'major')}}
steps:
- name: Set Up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- uses: actions/checkout@v3
with:
token: ${{ secrets.GH_PAT }} # Will change after public release
fetch-depth: 0
- name: Fetching Tags
run: git fetch --tags
- name: Setup git config
run: |
git config user.name "GitHub Actions Bot"
git config user.email "<>"
- name: Sleep after tag extraction
run: sleep 5
- name: Getting Tag
id: tag_extractor
run: echo "latest_tag=$(git describe --tags --abbrev=0)" >> "$GITHUB_OUTPUT"
outputs:
tag: ${{ steps.tag_extractor.outputs.latest_tag }}
check_2:
if: success('tagext')
needs: tagext
runs-on: ubuntu-latest
steps:
- name: Print Tag
env:
release_type: ${{ needs.tagext.outputs.tag }}
run: echo "$release_type"
image:
if: success('tagext')
needs: tagext
runs-on: x64linux
environment: Deploys
steps:
- name: Set Up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Checkout updated repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
platforms: linux/amd64,linux/arm64
- name: Adding required env vars for caching Docker build
uses: actions/github-script@v7
env:
github-token: ${{ secrets.GITHUB_TOKEN }}
with:
script: |
core.exportVariable('ACTIONS_CACHE_URL', process.env['ACTIONS_CACHE_URL'])
core.exportVariable('ACTIONS_RUNTIME_TOKEN', process.env['ACTIONS_RUNTIME_TOKEN'])
core.exportVariable('ACTIONS_RUNTIME_URL', process.env['ACTIONS_RUNTIME_URL'])
- name: Echo required env vars
shell: bash
run: |
echo "ACTIONS_CACHE_URL: $ACTIONS_CACHE_URL"
echo "ACTIONS_RUNTIME_TOKEN: $ACTIONS_RUNTIME_TOKEN"
echo "ACTIONS_RUNTIME_URL: $ACTIONS_RUNTIME_URL"
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and Publish Docker Images
env:
VERSION: ${{ needs.tagext.outputs.tag }}
run: |
echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u "${{ github.actor }}" --password-stdin
git fetch
cd ..
if [ -d models ]; then rm -r models; fi
mkdir models
docker buildx build --platform linux/amd64 -f Server/Dockerfile --push -t upsonic/on-prem:latest-AMD64 -t upsonic/on-prem:$VERSION-AMD64 \
--cache-to type=gha,mode=max \
--cache-from type=gha .
docker buildx build --platform linux/amd64 -f Server/Dockerfile.without_models --push -t upsonic/on-prem_without_models:latest-AMD64 -t upsonic/on-prem_without_models:$VERSION-AMD64 \
--cache-to type=gha,mode=max \
--cache-from type=gha .
image_arm:
if: success('tagext')
needs: tagext
runs-on: armlinux
environment: Deploys
steps:
- name: Set Up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Checkout updated repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
platforms: linux/amd64,linux/arm64
- name: Adding required env vars for caching Docker build
uses: actions/github-script@v7
env:
github-token: ${{ secrets.GITHUB_TOKEN }}
with:
script: |
core.exportVariable('ACTIONS_CACHE_URL', process.env['ACTIONS_CACHE_URL'])
core.exportVariable('ACTIONS_RUNTIME_TOKEN', process.env['ACTIONS_RUNTIME_TOKEN'])
core.exportVariable('ACTIONS_RUNTIME_URL', process.env['ACTIONS_RUNTIME_URL'])
- name: Echo required env vars
shell: bash
run: |
echo "ACTIONS_CACHE_URL: $ACTIONS_CACHE_URL"
echo "ACTIONS_RUNTIME_TOKEN: $ACTIONS_RUNTIME_TOKEN"
echo "ACTIONS_RUNTIME_URL: $ACTIONS_RUNTIME_URL"
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and Publish Docker Images
env:
VERSION: ${{ needs.tagext.outputs.tag }}
run: |
echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u "${{ github.actor }}" --password-stdin
git fetch
cd ..
if [ -d models ]; then rm -r models; fi
mkdir models
docker buildx build --platform linux/arm64 -f Server/Dockerfile --push -t upsonic/on-prem:latest-ARM64 -t upsonic/on-prem:$VERSION-ARM64 \
--cache-to type=gha,mode=max \
--cache-from type=gha .
docker buildx build --platform linux/arm64 -f Server/Dockerfile.without_models --push -t upsonic/on-prem_without_models:latest-ARM64 -t upsonic/on-prem_without_models:$VERSION-ARM64 \
--cache-to type=gha,mode=max \
--cache-from type=gha .
release:
if: success('tagext') && success('image')
needs: [image, image_arm, tagext]
runs-on: ubuntu-latest
environment: Release
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: ncipollo/release-action@v1
with:
name: Upsonic ${{ needs.tagext.outputs.tag }}
generateReleaseNotes: true
tag: ${{ needs.tagext.outputs.tag }}