-
Notifications
You must be signed in to change notification settings - Fork 1
169 lines (149 loc) · 4.99 KB
/
build.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
---
name: "build images"
on:
push:
branches:
- dev
- canary
- master
tags:
- v*
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 120
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set environment
run: |
BRANCH=${GITHUB_REF#refs/heads/}
TAG=${GITHUB_REF#refs/tags/}
SUFFIX="-${BRANCH}"
if [ ${GITHUB_REF} != ${TAG} ]; then
SUFFIX="-${TAG#v}"
fi
if [ ${BRANCH} = "master" ]; then
SUFFIX=
fi
echo "BRANCH=${BRANCH}" >> $GITHUB_ENV
echo "SUFFIX=${SUFFIX}" >> $GITHUB_ENV
# TODO
# - name: Create a new tag
# if: ${{ env.BRANCH == 'master' }}
# run: |
# VERSION="v$(sed -n '/## [0-9]\./p' CHANGELOG.md | cut -c 4-)"
# git tag -a "${VERSION}" -m "${VERSION}"
# git push origin "${VERSION}"
- name: Set up QEMU
uses: docker/setup-qemu-action@master
with:
platforms: all
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@master
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build cli
uses: docker/build-push-action@v2
with:
builder: ${{ steps.buildx.outputs.name }}
context: .
file: ./docker/Dockerfile-cli
platforms: linux/amd64,linux/arm64
push: true
tags: ghcr.io/taitounited/taito-cli:cli${{ env.SUFFIX }}
- name: Build ci
uses: docker/build-push-action@v2
with:
builder: ${{ steps.buildx.outputs.name }}
context: .
file: ./docker/Dockerfile-ci
platforms: linux/amd64,linux/arm64
push: true
tags: ghcr.io/taitounited/taito-cli:ci${{ env.SUFFIX }}
- name: Build ci-deploy
uses: docker/build-push-action@v2
with:
builder: ${{ steps.buildx.outputs.name }}
context: .
file: ./docker/Dockerfile-ci-deploy
platforms: linux/amd64,linux/arm64
push: true
tags: ghcr.io/taitounited/taito-cli:ci-deploy${{ env.SUFFIX }}
- name: Build ci-dockerd
uses: docker/build-push-action@v2
with:
builder: ${{ steps.buildx.outputs.name }}
context: .
file: ./docker/Dockerfile-ci-dockerd
platforms: linux/amd64,linux/arm64
push: true
tags: ghcr.io/taitounited/taito-cli:ci-dockerd${{ env.SUFFIX }}
- name: Build ci-all
uses: docker/build-push-action@v2
with:
builder: ${{ steps.buildx.outputs.name }}
context: .
file: ./docker/Dockerfile-ci-all
platforms: linux/amd64,linux/arm64
push: true
tags: ghcr.io/taitounited/taito-cli:ci-all${{ env.SUFFIX }}
- name: Build ci-aws
uses: docker/build-push-action@v2
with:
builder: ${{ steps.buildx.outputs.name }}
context: .
file: ./docker/Dockerfile-ci-aws
platforms: linux/amd64,linux/arm64
push: true
tags: ghcr.io/taitounited/taito-cli:ci-aws${{ env.SUFFIX }}
- name: Build ci-azure
uses: docker/build-push-action@v2
with:
builder: ${{ steps.buildx.outputs.name }}
context: .
file: ./docker/Dockerfile-ci-azure
platforms: linux/amd64,linux/arm64
push: true
tags: ghcr.io/taitounited/taito-cli:ci-azure${{ env.SUFFIX }}
- name: Build ci-do
uses: docker/build-push-action@v2
with:
builder: ${{ steps.buildx.outputs.name }}
context: .
file: ./docker/Dockerfile-ci-do
platforms: linux/amd64,linux/arm64
push: true
tags: ghcr.io/taitounited/taito-cli:ci-do${{ env.SUFFIX }}
- name: Build ci-gcp
uses: docker/build-push-action@v2
with:
builder: ${{ steps.buildx.outputs.name }}
context: .
file: ./docker/Dockerfile-ci-gcp
platforms: linux/amd64,linux/arm64
push: true
tags: ghcr.io/taitounited/taito-cli:ci-gcp${{ env.SUFFIX }}
- name: Build ci-openshift
uses: docker/build-push-action@v2
with:
builder: ${{ steps.buildx.outputs.name }}
context: .
file: ./docker/Dockerfile-ci-openshift
platforms: linux/amd64,linux/arm64
push: true
tags: ghcr.io/taitounited/taito-cli:ci-openshift${{ env.SUFFIX }}
- name: Build all
uses: docker/build-push-action@v2
with:
builder: ${{ steps.buildx.outputs.name }}
context: .
file: ./docker/Dockerfile-all
platforms: linux/amd64,linux/arm64
push: true
tags: ghcr.io/taitounited/taito-cli:ci-all${{ env.SUFFIX }}