Skip to content
This repository has been archived by the owner on Jun 11, 2024. It is now read-only.

Build and Push Image #73

Build and Push Image

Build and Push Image #73

name: publish-image
on:
push:
branches:
- main
schedule:
- cron: '35 */4 * * *'
workflow_dispatch:
jobs:
build-and-push-image:
runs-on: ubuntu-latest
strategy:
matrix:
os: [fedora, centos]
include:
- os: fedora
version: eln
- os: centos
version: stream9
steps:
- name: Install qemu dependency
run: |
sudo apt-get update
sudo apt-get install -y qemu-user-static
- name: Checkout repository
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Login to quay.io
run: buildah login --username ${{ secrets.QUAY_USER }} --password ${{ secrets.QUAY_PASSWORD }} quay.io
- name: Build
id: build
uses: redhat-actions/buildah-build@b4dc19b4ba891854660ab1f88a097d45aa158f76 # v2.12
with:
image: quay.io/centos-boot/${{ matrix.os }}-tier-1-dev
tags: ${{ matrix.version }}
containerfiles: ./${{ matrix.version }}-dev/Containerfile
archs: amd64
context: ${{ matrix.version }}-dev
- name: Push To quay.io
#run: buildah manifest push --all ${{ steps.build.outputs.image-with-tag }} docker://${{ steps.build.outputs.image-with-tag }}
run: buildah push ${{ steps.build.outputs.image-with-tag }} docker://${{ steps.build.outputs.image-with-tag }}