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@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
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@c7c53464625b32c7a7e944ae62b3e17d2b600130 # v3.7.0
2023-07-29 17:01:58 +00:00
- name: Set up Docker Buildx
id: buildx
uses: https://github.com/docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3.12.0
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@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.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@c299e40c65443455700f0fdfc63efafe5b349051 # v5.10.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@263435318d21b8e681c14492fe198d362a7d2c83 # v6.18.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 }}