2023-07-29 17:01:58 +00:00
|
|
|
name: Build image
|
|
|
|
|
|
|
|
|
|
on:
|
|
|
|
|
pull_request:
|
|
|
|
|
push:
|
|
|
|
|
branches:
|
|
|
|
|
- main
|
|
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
build:
|
|
|
|
|
runs-on: hetzner
|
|
|
|
|
steps:
|
2024-10-23 15:11:15 +00:00
|
|
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
2023-07-29 17:01:58 +00:00
|
|
|
with:
|
|
|
|
|
github-server-url: https://code.mor.re
|
|
|
|
|
|
|
|
|
|
- name: Set up QEMU
|
2025-02-06 14:08:58 +00:00
|
|
|
uses: https://github.com/docker/setup-qemu-action@4574d27a4764455b42196d70a065bc6853246a25 # v3.4.0
|
2023-07-29 17:01:58 +00:00
|
|
|
|
|
|
|
|
- name: Set up Docker Buildx
|
|
|
|
|
id: buildx
|
2024-12-16 10:08:43 +00:00
|
|
|
uses: https://github.com/docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5 # v3.8.0
|
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-11-19 18:12:20 +00:00
|
|
|
uses: https://github.com/docker/metadata-action@369eb591f429131d6889c46b94e711f089e6ca96 # v5.6.1
|
2023-07-29 17:01:58 +00:00
|
|
|
with:
|
|
|
|
|
flavor: |
|
|
|
|
|
latest=false
|
|
|
|
|
images: |
|
|
|
|
|
code.mor.re/${{ github.repository }}
|
|
|
|
|
|
|
|
|
|
- name: Build and push
|
2025-01-24 10:08:50 +00:00
|
|
|
uses: https://github.com/docker/build-push-action@ca877d9245402d1537745e0e356eab47c3520991 # v6.13.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 }}
|