Skip to content

adopt same approach as for api #2

adopt same approach as for api

adopt same approach as for api #2

Workflow file for this run

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