Skip to content

chore(deps-dev): bump tox from 4.11.4 to 4.14.2 (#302) #57

chore(deps-dev): bump tox from 4.11.4 to 4.14.2 (#302)

chore(deps-dev): bump tox from 4.11.4 to 4.14.2 (#302) #57

Workflow file for this run

name: Build and Push Image
on:
push:
branches:
- 'main'
- 'releases/**'
env:
IMAGE_NAME: yacfg
IMAGE_REGISTRY: quay.io
IMAGE_NAMESPACE: rhmessagingqe
jobs:
build:
name: Build and push image
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Build Image
id: build-image
uses: redhat-actions/buildah-build@v2
with:
image: ${{ env.IMAGE_NAME }}
tags: latest ${{ github.sha }} ${{ github.ref_name }}
archs: amd64, arm64 # ppc64le, s390x # wheel issue
containerfiles: |
./Dockerfile
- name: Push To quay.io
id: push-to-quay
uses: redhat-actions/push-to-registry@v2
with:
image: ${{ steps.build-image.outputs.image }}
tags: ${{ steps.build-image.outputs.tags }}
registry: ${{ env.IMAGE_REGISTRY }}/${{ env.IMAGE_NAMESPACE }}
username: ${{ secrets.QUAY_USER }}
password: ${{ secrets.QUAY_TOKEN }}
- name: Print image URL
run: echo "Image pushed to ${{ steps.push-to-quay.outputs.registry-paths }}"