Skip to content

explicit image

explicit image #5

Workflow file for this run

name: Dev Build and Push
on:
push:
branches:
- main
workflow_dispatch:
env:
IMAGE_NAME: quay.io/kuadrant/console-plugin
jobs:
build:
name: Dev Build from Main
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
arch: [amd64, arm64]
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Install QEMU
run: |
sudo apt-get update
sudo apt-get install -y qemu-user-static
- name: Build Image
id: build
uses: redhat-actions/buildah-build@v2
with:
image: ${{ env.IMAGE_NAME }}
tags: latest
archs: ${{ matrix.arch }}
containerfiles: |
./Dockerfile
- name: Push Image
uses: redhat-actions/push-to-registry@v2
with:
registry: quay.io
username: ${{ secrets.QUAY_USER }}
password: ${{ secrets.QUAY_PASSWORD }}
image: kuadrant/console-plugin
tags: latest