-
Notifications
You must be signed in to change notification settings - Fork 5
99 lines (96 loc) · 3.25 KB
/
build_base.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
name: build_base_images
on:
workflow_dispatch:
push:
branches: [ master ]
paths:
- 'icetray_base/Dockerfile*'
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Get current date
id: date
run: echo "current_date=$(date +'%Y-%m-%d')" >> $GITHUB_ENV
-
name: Set up QEMU
uses: docker/setup-qemu-action@v2
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
-
name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Build and push base devel 20 04
uses: docker/build-push-action@v3
with:
push: true
file: icetray_base/Dockerfile_base-devel-20.04
platforms: linux/amd64,linux/arm64/v8
tags: >
icecube/icetray-base:devel-ubuntu20.04,
icecube/icetray-base:devel-ubuntu20.04-${{ env.current_date }}
-
name: Build and push base prod 20 04
uses: docker/build-push-action@v3
with:
push: true
file: icetray_base/Dockerfile_base-prod-20.04
platforms: linux/amd64,linux/arm64/v8
tags: >
icecube/icetray-base:prod-ubuntu20.04,
icecube/icetray-base:prod-ubuntu20.04-${{ env.current_date }}
-
name: Build and push base devel 22 04
uses: docker/build-push-action@v3
with:
push: true
file: icetray_base/Dockerfile_base-devel-22.04
platforms: linux/amd64,linux/arm64/v8
tags: >
icecube/icetray-base:devel-ubuntu22.04,
icecube/icetray-base:devel-ubuntu22.04-${{ env.current_date }}
-
name: Build and push base prod 22 04
uses: docker/build-push-action@v3
with:
push: true
file: icetray_base/Dockerfile_base-prod-22.04
platforms: linux/amd64,linux/arm64/v8
tags: >
icecube/icetray-base:prod-ubuntu22.04,
icecube/icetray-base:prod-ubuntu22.04-${{ env.current_date }}
-
name: Build and push base devel rocky 8
uses: docker/build-push-action@v3
with:
push: true
file: icetray_base/Dockerfile_base-devel-rocky8
platforms: linux/amd64,linux/arm64/v8
tags: >
icecube/icetray-base:devel-rocky8,
icecube/icetray-base:devel-rocky8-${{ env.current_date }}
-
name: Build and push base devel rocky 9
uses: docker/build-push-action@v3
with:
push: true
file: icetray_base/Dockerfile_base-devel-rocky9
platforms: linux/amd64,linux/arm64/v8
tags: >
icecube/icetray-base:devel-rocky9,
icecube/icetray-base:devel-rocky9-${{ env.current_date }}
-
name: Build and push base devel debian sid
uses: docker/build-push-action@v3
with:
push: true
file: icetray_base/Dockerfile_base-devel-debian-sid
platforms: linux/amd64,linux/arm64/v8
tags: >
icecube/icetray-base:devel-debian-sid,
icecube/icetray-base:devel-debian-sid-${{ env.current_date }}