name: Build image on: pull_request: push: branches: - main jobs: build: runs-on: hetzner steps: - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: github-server-url: https://code.mor.re - name: Set up QEMU uses: https://github.com/docker/setup-qemu-action@96fe6ef7f33517b61c61be40b68a1882f3264fb8 # v4.2.0 - name: Set up Docker Buildx id: buildx uses: https://github.com/docker/setup-buildx-action@bb05f3f5519dd87d3ba754cc423b652a5edd6d2c # v4.2.0 - name: Login to registry if: github.event_name != 'pull_request' uses: https://github.com/docker/login-action@dbcb813823bdd20940b903addbd779551569679f # v4.6.0 with: registry: code.mor.re username: ${{ github.repository_owner }} password: ${{ secrets.REGISTRY_TOKEN }} - name: Docker meta id: meta uses: https://github.com/docker/metadata-action@dc802804100637a589fabce1cb79ff13a1411302 # v6.2.0 with: flavor: | latest=false images: | code.mor.re/${{ github.repository }} - name: Build and push uses: https://github.com/docker/build-push-action@53b7df96c91f9c12dcc8a07bcb9ccacbed38856a # v7.3.0 with: platforms: linux/amd64,linux/arm64 push: ${{ github.event_name != 'pull_request' }} tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }}