Archived
1
0
Fork 0
This repository has been archived on 2024-07-01. You can view files and clone it, but cannot push or open issues or pull requests.
weewx-docker/.forgejo/workflows/build-image.yml
Daniel Kempkens fcacc4ae9c
Some checks failed
Build Image / build-and-push-image (push) Failing after 39s
ci: call buildah bud directly
2023-12-09 23:03:12 +01:00

19 lines
359 B
YAML

name: Build Image
on:
push:
branches: ['master']
jobs:
build-and-push-image:
runs-on: privileged-ubuntu-latest-amd64
steps:
- uses: actions/checkout@v3
- name: Install Buildah
run: apt-get -y update && apt-get -y install buildah
- name: Build Container
run: buildah --storage-driver=vfs bud ./Dockerfile