From 7582abfa277f00478fa3b235e6f442d1a7b52096 Mon Sep 17 00:00:00 2001 From: Ashleigh Carr Date: Mon, 12 Feb 2024 10:41:45 +0000 Subject: [PATCH] Fix PR workflow, Buildah requires atleast an image name if no tags specified --- .github/workflows/pull_requests.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/pull_requests.yml b/.github/workflows/pull_requests.yml index af1c6422..daa59490 100644 --- a/.github/workflows/pull_requests.yml +++ b/.github/workflows/pull_requests.yml @@ -38,6 +38,8 @@ jobs: id: build-image uses: redhat-actions/buildah-build@v2 with: + # Not being uploaded to any registry, use a simple name to allow Buildah to build correctly. + image: cyberchef containerfiles: ./Dockerfile platforms: linux/amd64 oci: true