This repository has been archived by the owner on Jan 31, 2024. It is now read-only.
Refactor GitHub Actions workflows #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and Push Image | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
build-and-push-image: | |
runs-on: ubuntu-latest | |
env: | |
dir: fedora-bootc-cloud | |
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 | |
if: ${{ github.event_name == 'push' }} | |
- name: Build | |
id: build | |
uses: redhat-actions/buildah-build@b4dc19b4ba891854660ab1f88a097d45aa158f76 # v2.12 | |
with: | |
image: quay.io/centos-bootc/${{ env.dir }} | |
tags: eln | |
oci: true | |
containerfiles: ./${{ env.dir }}/Containerfile | |
archs: amd64 | |
context: ${{ env.dir }} | |
- name: Push To quay.io | |
run: buildah push ${{ steps.build.outputs.image-with-tag }} docker://${{ steps.build.outputs.image-with-tag }} | |
if: ${{ github.event_name == 'push' }} |