-
Notifications
You must be signed in to change notification settings - Fork 1
59 lines (51 loc) · 1.54 KB
/
build-monitor-statistics.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
name: Build monitor-statistics image
on:
workflow_dispatch:
inputs:
image_tag:
description: 'Image tag'
required: true
default: 'latest'
jobs:
build-docker-image:
runs-on: ubuntu-latest
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Login to harbor registry
uses: docker/login-action@v2
with:
registry: "${{ secrets.HARBOR_IP }}"
username: ${{ secrets.HARBOR_USER }}
password: ${{ secrets.HARBOR_TOKEN }}
- name: Setup docker context for buildx
id: buildx-context
run: docker context create builders || docker context use builders
- name: Create BuildKit Configuration
run: |
cat <<EOF > buildkitd.toml
[registry."${{ secrets.HARBOR_IP }}"]
http = false
insecure = false
ca=["/etc/ssl/certs/ca-certificates.crt"]
EOF
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
with:
version: v0.9.1
endpoint: builders
buildkitd-flags: --debug
config: buildkitd.toml
- name: Checkout cads-monitor-statistics repo
uses: actions/checkout@v3
with:
repository: ecmwf-projects/cads-monitor-statistics
token: ${{ secrets.CADS_PAT }}
path: .
- name: Build and push
uses: docker/build-push-action@v3
with:
context: .
push: true
tags: ${{ secrets.HARBOR_IP }}/cads/cads-monitor-statistics:${{ github.event.inputs.image_tag }}
file: Dockerfile