2023-07-29 17:01:58 +00:00
|
|
|
name: Build image
|
|
|
|
|
|
|
|
|
|
on:
|
|
|
|
|
pull_request:
|
|
|
|
|
push:
|
|
|
|
|
branches:
|
|
|
|
|
- main
|
|
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
build:
|
|
|
|
|
runs-on: hetzner
|
|
|
|
|
steps:
|
2023-10-31 14:05:24 +00:00
|
|
|
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
2023-07-29 17:01:58 +00:00
|
|
|
with:
|
|
|
|
|
github-server-url: https://code.mor.re
|
|
|
|
|
|
|
|
|
|
- name: Set up QEMU
|
2024-02-08 15:06:25 +00:00
|
|
|
uses: https://github.com/docker/setup-qemu-action@68827325e0b33c7199eb31dd4e31fbe9023e06e3 # v3.0.0
|
2023-07-29 17:01:58 +00:00
|
|
|
|
|
|
|
|
- name: Set up Docker Buildx
|
|
|
|
|
id: buildx
|
2024-04-08 08:09:38 +00:00
|
|
|
uses: https://github.com/docker/setup-buildx-action@d70bba72b1f3fd22344832f00baa16ece964efeb # v3.3.0
|
2023-07-29 17:01:58 +00:00
|
|
|
|
|
|
|
|
- name: Login to registry
|
|
|
|
|
if: github.event_name != 'pull_request'
|
2024-03-13 16:05:39 +00:00
|
|
|
uses: https://github.com/docker/login-action@e92390c5fb421da1463c202d546fed0ec5c39f20 # v3.1.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-06-10 09:09:22 +00:00
|
|
|
uses: https://github.com/docker/build-push-action@ca052bb54ab0790a636c9b5f226502c73d547a25 # v5.4.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 }}
|