|
|
@ -69,13 +69,14 @@ jobs:
|
|
|
|
uses: actions/download-artifact@v4
|
|
|
|
uses: actions/download-artifact@v4
|
|
|
|
with:
|
|
|
|
with:
|
|
|
|
name: buildah-bin
|
|
|
|
name: buildah-bin
|
|
|
|
path: /usr/bin/buildah
|
|
|
|
path: /usr/local/bin/buildah
|
|
|
|
- name: Ensure buildah binary has +x permissions set
|
|
|
|
- name: Ensure buildah binary has +x permissions set
|
|
|
|
run: |
|
|
|
|
run: |
|
|
|
|
chmod +x /usr/bin/buildah
|
|
|
|
chmod +x /usr/local/bin/buildah
|
|
|
|
- name: Check buildah version
|
|
|
|
- name: Check buildah version
|
|
|
|
run: |
|
|
|
|
run: |
|
|
|
|
ls -l /usr/bin/buildah
|
|
|
|
ls -l /usr/local/bin/buildah
|
|
|
|
|
|
|
|
echo $PATH
|
|
|
|
which buildah
|
|
|
|
which buildah
|
|
|
|
buildah version
|
|
|
|
buildah version
|
|
|
|
- name: Check out repo
|
|
|
|
- name: Check out repo
|
|
|
|