-
Notifications
You must be signed in to change notification settings - Fork 1
65 lines (56 loc) · 1.63 KB
/
cli.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
name: cli
on:
push:
branches: [ "main" ]
paths:
- 'cli/**/*.py'
- 'cli/**/*.sh'
- 'cli/**/Dockerfile'
- 'cli/**/requirements.txt'
- '**/cli.yml'
pull_request:
branches: [ "main" ]
paths:
- 'cli/**/*.py'
- 'cli/**/*.sh'
- 'cli/**/Dockerfile'
- 'cli/**/requirements.txt'
- '**/cli.yml'
env:
COMPONENT: cli
jobs:
build-and-push:
name: Build and push images
runs-on: ubuntu-latest
# Cancel in-progress jobs if matching component and platform when new PR arrives.
concurrency:
group: cli
cancel-in-progress: true
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Set up QEMU
# if: matrix.architecture != 'amd64'
uses: docker/setup-qemu-action@v3
- name: Setup Docker buildx
uses: docker/setup-buildx-action@v3
# with:
# buildkitd-flags: --debug
- name: Login to Docker Hub Container Registry
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
# logout: false
- name: Build and push Docker image
uses: docker/build-push-action@v6
with:
context: .
file: ./${{ env.COMPONENT }}/Dockerfile
push: true
# cache-from: type=gha,scope=${{ matrix.architecture }}
# cache-to: type=gha,mode=max,scope=${{ matrix.architecture }}
cache-from: type=gha
cache-to: type=gha,mode=max
platforms: linux/amd64, linux/arm64
tags: ${{ secrets.DOCKERHUB_USERNAME }}/hamframe-${{ env.COMPONENT}}:latest