From 3302655dcde8c26cb716394fca7e7bfa62fd5eb7 Mon Sep 17 00:00:00 2001 From: Alex Palaistras Date: Tue, 9 Apr 2024 00:25:57 +0100 Subject: [PATCH] Install dependencies with `sudo` in container build --- .github/workflows/container.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/container.yaml b/.github/workflows/container.yaml index a3b0b52..64004a3 100644 --- a/.github/workflows/container.yaml +++ b/.github/workflows/container.yaml @@ -4,6 +4,7 @@ on: paths: - 'grawkit' - 'play/**' + - '.github/workflows/container.yaml' env: CONTAINER_NAME: ${{ github.repository_owner }}/grawkit-play CONTAINER_TAG: latest @@ -16,8 +17,8 @@ jobs: uses: actions/checkout@v4 - name: Install dependencies run: | - apt-get update -y - apt-get install -y podman buildah + sudo apt-get update -y + sudo apt-get install -y podman buildah - name: Build container image id: build-image uses: redhat-actions/buildah-build@v2