2023-07-29 17:01:58 +00:00
|
|
|
name: Build image
|
|
|
|
|
|
|
|
|
|
on:
|
|
|
|
|
pull_request:
|
|
|
|
|
push:
|
|
|
|
|
branches:
|
|
|
|
|
- main
|
|
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
build:
|
|
|
|
|
runs-on: hetzner
|
|
|
|
|
steps:
|
2024-06-12 19:09:29 +00:00
|
|
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
2023-07-29 17:01:58 +00:00
|
|
|
with:
|
|
|
|
|
github-server-url: https://code.mor.re
|
|
|
|
|
|
|
|
|
|
- name: Set up QEMU
|
2024-07-22 10:09:41 +00:00
|
|
|
uses: https://github.com/docker/setup-qemu-action@49b3bc8e6bdd4a60e6116a5414239cba5943d3cf # v3.2.0
|
2023-07-29 17:01:58 +00:00
|
|
|
|
|
|
|
|
- name: Set up Docker Buildx
|
|
|
|
|
id: buildx
|
2024-07-29 17:10:10 +00:00
|
|
|
uses: https://github.com/docker/setup-buildx-action@988b5a0280414f521da01fcc63a27aeeb4b104db # v3.6.1
|
2023-07-29 17:01:58 +00:00
|
|
|
|
|
|
|
|
- name: Login to registry
|
|
|
|
|
if: github.event_name != 'pull_request'
|
2024-07-22 09:09:37 +00:00
|
|
|
uses: https://github.com/docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0
|
2023-07-29 17:01:58 +00:00
|
|
|
with:
|
|
|
|
|
registry: code.mor.re
|
|
|
|
|
username: ${{ github.repository_owner }}
|
|
|
|
|
password: ${{ secrets.REGISTRY_TOKEN }}
|
|
|
|
|
|
|
|
|
|
- name: Docker meta
|
|
|
|
|
id: meta
|
2024-02-08 15:06:22 +00:00
|
|
|
uses: https://github.com/docker/metadata-action@8e5442c4ef9f78752691e2d8f8d19755c6f78e81 # v5.5.1
|
2023-07-29 17:01:58 +00:00
|
|
|
with:
|
|
|
|
|
flavor: |
|
|
|
|
|
latest=false
|
|
|
|
|
images: |
|
|
|
|
|
code.mor.re/${{ github.repository }}
|
|
|
|
|
|
|
|
|
|
- name: Build and push
|
2024-09-27 12:10:38 +00:00
|
|
|
uses: https://github.com/docker/build-push-action@32945a339266b759abcbdc89316275140b0fc960 # v6.8.0
|
2023-07-29 17:01:58 +00:00
|
|
|
with:
|
|
|
|
|
platforms: linux/amd64,linux/arm64
|
|
|
|
|
push: ${{ github.event_name != 'pull_request' }}
|
|
|
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
|
|
|
labels: ${{ steps.meta.outputs.labels }}
|