From 2160f6054c1ce4c53e64e1c14d89ffac4354038c Mon Sep 17 00:00:00 2001 From: Aram Peres <6775216+aramperes@users.noreply.github.com> Date: Sat, 23 Aug 2025 03:00:13 -0400 Subject: [PATCH] Push to registry --- .forgejo/workflows/website.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.forgejo/workflows/website.yaml b/.forgejo/workflows/website.yaml index ae24266..8876031 100644 --- a/.forgejo/workflows/website.yaml +++ b/.forgejo/workflows/website.yaml @@ -14,8 +14,8 @@ jobs: - name: Extract the tag id: extract_tag run: echo "::set-output name=tag::$(echo ${{ forge.sha }} | cut -c1-10)" - - name: Install Buildah - run: apt-get update && apt-get install -y buildah + - name: Install Buildah and Podman + run: apt-get update && apt-get install -y buildah podman - name: Buildah Build id: build-image uses: redhat-actions/buildah-build@v2 @@ -25,7 +25,7 @@ jobs: context: ./website containerfiles: ./website/docker/Dockerfile - name: Push to Registry - uses: redhat-actions/push-to-registry@v2 + uses: https://github.com/redhat-actions/push-to-registry@v2 with: image: ${{ steps.build-image.outputs.image }} tags: ${{ steps.build-image.outputs.tags }}