Initial creation of demo repo for GHA builds #1
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 F40 bootc image with GHA | |
on: | |
push: | |
paths: | |
- 'fedora/**' | |
branches: | |
- main | |
jobs: | |
build: | |
name: Build Fedora bootc image | |
runs-on: ubuntu-latest | |
env: | |
IMAGE_NAME: f40-bootc-quick | |
REGISTRY: ghcr.io/nzwulfin | |
steps: | |
- name: Clone the repository | |
uses: actions/checkout@v4 | |
- name: Use buildah bud to create the image | |
id: build-image | |
uses: redhat-actions/buildah-build@v2 | |
with: | |
image: ${{ env.IMAGE_NAME }} | |
tags: latest ${{ github.sha }} | |
containerfiles: | | |
./fedora/Containerfile | |
- name: Log in to the GitHub Container registry | |
uses: redhat-actions/podman-login@v1 | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Push to GitHub Container Repository | |
id: push-to-ghcr | |
uses: redhat-actions/push-to-registry@v2 | |
with: | |
image: ${{ steps.build-image.outputs.image }} | |
tags: ${{ steps.build-image.outputs.tags }} | |
registry: ${{ env.REGISTRY }} |