ci: call buildah bud directly
Some checks failed
Build Image / build-and-push-image (push) Failing after 0s
Some checks failed
Build Image / build-and-push-image (push) Failing after 0s
This commit is contained in:
parent
ed52e16a57
commit
6192637a84
1 changed files with 4 additions and 14 deletions
|
@ -6,20 +6,10 @@ on:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-and-push-image:
|
build-and-push-image:
|
||||||
runs-on: ubuntu-latest-amd64
|
runs-on: native-amd64
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Install Buildah
|
- name: Build Container
|
||||||
run: apt-get -y update && apt-get -y install buildah
|
run: buildah --storage-driver=vfs 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
|
|
||||||
|
|
Reference in a new issue