-
Notifications
You must be signed in to change notification settings - Fork 5
86 lines (74 loc) · 2.45 KB
/
docker-image.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
name: Build Docker image
on:
push:
tags:
- '*.*.*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Create src directory
run: mkdir src
- name: Checkout opengever.maintenance
uses: actions/checkout@v3
with:
repository: 4teamwork/opengever.maintenance
path: src/opengever.maintenance
- name: Checkout collective.js.timeago
uses: actions/checkout@v3
with:
repository: collective/collective.js.timeago
path: src/collective.js.timeago
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Extract metadata from Git reference
id: meta_ogcore
uses: docker/metadata-action@v4
with:
images: |
4teamwork/ogcore
tags: |
type=pep440,pattern={{version}}
- name: Build and push ogcore
uses: docker/build-push-action@v3
with:
context: .
file: ./docker/core/Dockerfile
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.meta_ogcore.outputs.tags }}
labels: ${{ steps.meta_ogcore.outputs.labels }}
cache-from: type=gha,scope=ogcore
cache-to: type=gha,mode=max,scope=ogcore
secrets: |
"gldt=${{ secrets.GITLAB_DEPLOY_TOKEN }}"
- name: Extract metadata from Git reference for ogtestserver
id: meta_ogtestserver
uses: docker/metadata-action@v4
with:
images: |
4teamwork/ogtestserver
tags: |
type=pep440,pattern={{version}}
- name: Build and push ogtestserver
uses: docker/build-push-action@v3
with:
context: .
file: ./docker/testserver/Dockerfile
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.meta_ogtestserver.outputs.tags }}
labels: ${{ steps.meta_ogtestserver.outputs.labels }}
cache-from: type=gha,scope=ogtestserver
cache-to: type=gha,mode=max,scope=ogtestserver
secrets: |
"gldt=${{ secrets.GITLAB_DEPLOY_TOKEN }}"