-
Notifications
You must be signed in to change notification settings - Fork 0
155 lines (131 loc) · 4.17 KB
/
publish.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
name: Publish
on:
push:
branches:
- master
workflow_dispatch:
jobs:
gateway:
runs-on: ubuntu-latest
steps:
- name: Check Out
uses: actions/checkout@v4
- name: Log in Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
- name: Set up Docker BuildX
uses: docker/setup-buildx-action@v3
- name: Extract GateWay Metadata
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ secrets.DOCKER_USERNAME }}/gateway
- name: Build and Push GateWay
uses: docker/build-push-action@v6
with:
context: ./code/back/gateway
file: ./code/back/gateway/Dockerfile
push: true
tags: ${{ secrets.DOCKER_USERNAME }}/gateway:${{ github.sha }}
labels: ${{ steps.meta.outputs.labels }}
integrator:
runs-on: ubuntu-latest
steps:
- name: Check Out
uses: actions/checkout@v4
- name: Log in Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
- name: Set up Docker BuildX
uses: docker/setup-buildx-action@v3
- name: Extract Integrator Metadata
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ secrets.DOCKER_USERNAME }}/integrator
- name: Build and Push Integrator
uses: docker/build-push-action@v6
with:
context: ./code/back/integrator
file: ./code/back/integrator/Dockerfile
push: true
tags: ${{ secrets.DOCKER_USERNAME }}/integrator:${{ github.sha }}
labels: ${{ steps.meta.outputs.labels }}
validator:
runs-on: ubuntu-latest
steps:
- name: Check Out
uses: actions/checkout@v4
- name: Log in Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
- name: Set up Docker BuildX
uses: docker/setup-buildx-action@v3
- name: Extract Validator Metadata
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ secrets.DOCKER_USERNAME }}/validator
- name: Build and Push Validator
uses: docker/build-push-action@v6
with:
context: ./code/back/validator
file: ./code/back/validator/Dockerfile
push: true
tags: ${{ secrets.DOCKER_USERNAME }}/validator:${{ github.sha }}
labels: ${{ steps.meta.outputs.labels }}
web-app:
runs-on: ubuntu-latest
steps:
- name: Check Out
uses: actions/checkout@v4
- name: Log in Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
- name: Set up Docker BuildX
uses: docker/setup-buildx-action@v3
- name: Extract WebApp Metadata
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ secrets.DOCKER_USERNAME }}/web-app
- name: Build and Push WebApp
uses: docker/build-push-action@v6
with:
context: ./code/front/web-app
file: ./code/front/web-app/Dockerfile
push: true
tags: ${{ secrets.DOCKER_USERNAME }}/web-app:${{ github.sha }}
labels: ${{ steps.meta.outputs.labels }}
operations:
runs-on: ubuntu-latest
needs:
- gateway
- integrator
- validator
- web-app
steps:
- name: Check Out
uses: actions/checkout@v4
with:
repository: 2Delight/mline-operations
ref: master
token: ${{ secrets.OPERATIONS_REPO_UPDATE }}
- name: Setup Git Config
run: |
git config user.name "GitHub Actions"
git config user.email "[email protected]"
- name: Update Tag
run: |
sed -i 's/TAG=.*/TAG=${{ github.sha }}/g' .env
git add .env
git commit -m "Tag update: ${{ github.sha }}"
git push