Install dependencies with `sudo` in container build
Grawkit Play Container Build / Container Build (push) Successful in 9m19s Details

This commit is contained in:
Alex Palaistras 2024-04-09 00:25:57 +01:00
parent b1eed71dee
commit 3302655dcd
1 changed files with 3 additions and 2 deletions

View File

@ -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