From 2372d03c080feb134c91e2f99400ac22229e56a6 Mon Sep 17 00:00:00 2001 From: Muhamad Aditya Prima Date: Mon, 16 Dec 2024 02:38:50 +0700 Subject: [PATCH] Fixed wrong action workflow --- .gitea/workflows/almalinux8.yaml | 4 ++++ .gitea/workflows/almalinux9.yaml | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/.gitea/workflows/almalinux8.yaml b/.gitea/workflows/almalinux8.yaml index 7618605..c739bb4 100644 --- a/.gitea/workflows/almalinux8.yaml +++ b/.gitea/workflows/almalinux8.yaml @@ -16,6 +16,10 @@ jobs: flavor: ["default", "micro"] version: ["8.10"] steps: + - name: Setup buildah + shell: bash + run: | + sudo apt -y install buildah - name: Check out repository code uses: actions/checkout@v4 - if: ${{ matrix.flavor == 'default' }} diff --git a/.gitea/workflows/almalinux9.yaml b/.gitea/workflows/almalinux9.yaml index 659eadd..d7d9346 100644 --- a/.gitea/workflows/almalinux9.yaml +++ b/.gitea/workflows/almalinux9.yaml @@ -16,6 +16,10 @@ jobs: flavor: ["default", "micro"] version: ["9.5"] steps: + - name: Setup buildah + shell: bash + run: | + sudo apt -y install buildah - name: Check out repository code uses: actions/checkout@v4 - if: ${{ matrix.flavor == 'default' }}