Cleanup and configure for Github building

This commit is contained in:
2025-04-15 10:35:02 +01:00
parent b242cb86f2
commit ae14c49677
9 changed files with 98 additions and 84 deletions

33
.github/workflows/build-container.yaml vendored Normal file
View File

@@ -0,0 +1,33 @@
name: Build Container
"on":
push:
branches:
- main
tags:
- "[0-9]+.[0-9]+.[0-9]+"
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to GHCR
uses: docker/login-action@v3
if: github.event_name != 'pull_request'
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
id: docker_build
uses: docker/build-push-action@v6
with:
push: true
platforms: linux/amd64,linux/arm64
tags: |
ghcr.io/${{ github.repository_owner }}/cups-avahi-airprint:${{ github.ref_name }}
ghcr.io/${{ github.repository_owner }}/cups-avahi-airprint:latest