From 6192637a84c921e6697051c3aae6e11de4d14ebc Mon Sep 17 00:00:00 2001 From: Daniel Kempkens Date: Sat, 9 Dec 2023 21:58:12 +0100 Subject: [PATCH] ci: call buildah bud directly --- .forgejo/workflows/build-image.yml | 18 ++++-------------- 1 file changed, 4 insertions(+), 14 deletions(-) diff --git a/.forgejo/workflows/build-image.yml b/.forgejo/workflows/build-image.yml index c02dd9b..00a338e 100644 --- a/.forgejo/workflows/build-image.yml +++ b/.forgejo/workflows/build-image.yml @@ -6,20 +6,10 @@ on: jobs: build-and-push-image: - runs-on: ubuntu-latest-amd64 + runs-on: native-amd64 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - - name: Install Buildah - run: apt-get -y update && apt-get -y install buildah - - - name: Buildah Action - uses: https://github.com/redhat-actions/buildah-build@v2 - with: - image: weewx - tags: master - containerfiles: | - ./Dockerfile - extra-args: | - --storage-driver=vfs + - name: Build Container + run: buildah --storage-driver=vfs bud ./Dockerfile