From bd89add15af4d17d3dc38cd7c0fb76b01f7034b6 Mon Sep 17 00:00:00 2001 From: HubbeKing Date: Wed, 20 Nov 2024 09:46:16 +0200 Subject: [PATCH] Attempt to overwrite packaged /usr/bin/buildah and set +x for it --- .github/workflows/main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 78fe026..43db710 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -69,13 +69,13 @@ jobs: uses: actions/download-artifact@v4 with: name: buildah-bin - path: /usr/local/bin/buildah - - name: Ensure /usr/local/bin is on the PATH + path: /usr/bin/buildah + - name: Ensure buildah binary has +x permissions set run: | - export PATH="/usr/local/bin:$PATH" + chmod +x /usr/bin/buildah - name: Check buildah version run: | - echo "$PATH" + ls -l /usr/bin/buildah which buildah buildah version - name: Check out repo