Skip to content

Commit

Permalink
Switching to buildah action for pushing
Browse files Browse the repository at this point in the history
  • Loading branch information
cremuzzi committed Nov 3, 2024
1 parent 965cb6b commit 37e222a
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 30 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/build-image.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Container image build
name: Buildah Build

on:
push:
Expand All @@ -12,6 +12,7 @@ on:
- master
paths:
- "Containerfile"

jobs:
build:
name: Build image
Expand All @@ -20,10 +21,12 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: redhat-actions/buildah-build@v2
name: Buildah action
# https://github.com/redhat-actions/buildah-build
- name: Buildah build
id: build-image
uses: redhat-actions/buildah-build@v2
with:
image: ${{ github.repository }}
tags: ${{ github.sha }}
image: mpv
tags: latest ${{ github.ref_name }}
containerfiles: |
./Containerfile
52 changes: 27 additions & 25 deletions .github/workflows/push-image.yml
Original file line number Diff line number Diff line change
@@ -1,34 +1,36 @@
name: Publish container image to Docker Hub
name: Buildah Build and Push

on:
push:
tags:
- '*'

jobs:
push_to_registry:
name: Push Container image to Docker Hub
runs-on: ubuntu-22.04
build_n_push:
name: Build and push
runs-on: ubuntu-24.04

steps:
- name: Check out the repo
uses: actions/checkout@v2

- name: Log in to Docker Hub
uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38
with:
images: cremuzzi/mpv
- uses: actions/checkout@v4

- name: Build and push Docker image
uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
with:
context: .
labels: ${{ steps.meta.outputs.labels }}
push: true
tags: ${{ steps.meta.outputs.tags }}
# https://github.com/redhat-actions/buildah-build
- name: Buildah build
id: build-image
uses: redhat-actions/buildah-build@v2
with:
image: mpv
tags: latest ${{ github.ref_name }}
containerfiles: |
./Containerfile
# https://github.com/redhat-actions/push-to-registry
- name: Push To docker.io
id: push-to-docker-io
uses: redhat-actions/push-to-registry@v2
with:
image: ${{ steps.build-image.outputs.image }}
tags: ${{ steps.build-image.outputs.tags }}
registry: docker.io/cremuzzi
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}

0 comments on commit 37e222a

Please sign in to comment.