Archived
1
0
Fork 0

feat(ci): Use buildah to build the OCI image
Some checks failed
Build Image / build-and-push-image (push) Failing after 40s

This commit is contained in:
Daniel Kempkens 2023-09-17 15:45:14 +02:00
parent ea10291a31
commit ed52e16a57
Signed by: daniel
SSH key fingerprint: SHA256:Ks/MyhQYcPRQiwMKLAKquWCdCPe3JXlb1WttgnAoSeM
2 changed files with 25 additions and 48 deletions

View file

@ -0,0 +1,25 @@
name: Build Image
on:
push:
branches: ['master']
jobs:
build-and-push-image:
runs-on: ubuntu-latest-amd64
steps:
- uses: actions/checkout@v3
- 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

View file

@ -1,48 +0,0 @@
name: Build Image
on:
push:
branches: ['master']
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
build-and-push-image:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Log in to the Container registry
uses: docker/login-action@v2
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v4
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
- name: Build and push Docker image
uses: docker/build-push-action@v3
with:
context: .
platforms: linux/amd64
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}