Skip to content

fix(build): pipx and hvac #15

fix(build): pipx and hvac

fix(build): pipx and hvac #15

Workflow file for this run

name: Docker Image CI
on:
push:
tags:
- "v*.*.*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: |
quay.io/m1k_cloud/automation_docker_image
tags: |
type=semver,pattern={{raw}}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to quay.io
uses: docker/login-action@v3
with:
registry: quay.io
username: ${{ secrets.REGISTRY_USERNAME }}
password: ${{ secrets.REGISTRY_PASSWORD }}
- name: Build and publish image to Quay
uses: docker/build-push-action@v6
with:
provenance: false
push: true
tags: ${{ steps.meta.outputs.tags }}