From 411f9179800416f1118a795292072ab99bb97873 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 | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/.forgejo/workflows/build-image.yml b/.forgejo/workflows/build-image.yml index c02dd9b..e4d7517 100644 --- a/.forgejo/workflows/build-image.yml +++ b/.forgejo/workflows/build-image.yml @@ -14,12 +14,15 @@ jobs: - 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 bud ./Dockerfile + + # - name: Buildah Action + # uses: https://github.com/redhat-actions/buildah-build@v2 + # with: + # image: weewx + # tags: master + # containerfiles: | + # ./Dockerfile + # extra-args: | + # --storage-driver=vfs