From ed52e16a578b008422c58c20b91e186a06227255 Mon Sep 17 00:00:00 2001 From: Daniel Kempkens Date: Sun, 17 Sep 2023 15:45:14 +0200 Subject: [PATCH] feat(ci): Use buildah to build the OCI image --- .forgejo/workflows/build-image.yml | 25 ++++++++++++++++ .github/workflows/build-image.yml | 48 ------------------------------ 2 files changed, 25 insertions(+), 48 deletions(-) create mode 100644 .forgejo/workflows/build-image.yml delete mode 100644 .github/workflows/build-image.yml diff --git a/.forgejo/workflows/build-image.yml b/.forgejo/workflows/build-image.yml new file mode 100644 index 0000000..c02dd9b --- /dev/null +++ b/.forgejo/workflows/build-image.yml @@ -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 diff --git a/.github/workflows/build-image.yml b/.github/workflows/build-image.yml deleted file mode 100644 index 54f56d6..0000000 --- a/.github/workflows/build-image.yml +++ /dev/null @@ -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 }}