runner-images/.forgejo/workflows/build.yaml

48 lines
1.5 KiB
YAML
Raw Normal View History

2023-07-29 17:01:58 +00:00
name: Build image
on:
pull_request:
push:
branches:
- main
jobs:
build:
runs-on: hetzner
steps:
- 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
uses: https://github.com/docker/setup-qemu-action@29109295f81e9208d7d86ff1c6c12d2833863392 # v3.6.0
2023-07-29 17:01:58 +00:00
- name: Set up Docker Buildx
id: buildx
uses: https://github.com/docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # v3.11.1
2023-07-29 17:01:58 +00:00
- name: Login to registry
if: github.event_name != 'pull_request'
uses: https://github.com/docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.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
uses: https://github.com/docker/metadata-action@c1e51972afc2121e065aed6d45c65596fe445f3f # v5.8.0
2023-07-29 17:01:58 +00:00
with:
flavor: |
latest=false
images: |
code.mor.re/${{ github.repository }}
- name: Build and push
uses: https://github.com/docker/build-push-action@1dc73863535b631f98b2378be8619f83b136f4a0 # v6.17.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 }}