Install buildah in deploy workflow
Some checks failed
Deploy / deploy (push) Failing after 1m41s

This commit is contained in:
tas
2026-03-15 17:15:49 +00:00
parent 651ac7703f
commit f71d140af3

View File

@@ -14,6 +14,13 @@ jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Install buildah
run: |
apt-get update && apt-get install -y buildah
mkdir -p /etc/containers
printf '[[registry]]\nlocation = "git.kimchi"\ninsecure = true\n' > /etc/containers/registries.conf
- name: Checkout
uses: actions/checkout@v4