feat(ci): Use buildah to build the OCI image
Some checks failed
Build Image / build-and-push-image (push) Failing after 40s
Some checks failed
Build Image / build-and-push-image (push) Failing after 40s
This commit is contained in:
parent
ea10291a31
commit
ed52e16a57
2 changed files with 25 additions and 48 deletions
25
.forgejo/workflows/build-image.yml
Normal file
25
.forgejo/workflows/build-image.yml
Normal 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
|
48
.github/workflows/build-image.yml
vendored
48
.github/workflows/build-image.yml
vendored
|
@ -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 }}
|
|
Reference in a new issue