Files
docker-compose-docker/.gitea/workflows/build.yaml
T
volker.raschek a9d7e01167
Lint Markdown files / markdown-lint (push) Successful in 5s
Release latest / push-amd64 (push) Successful in 1m4s
Release latest / push-arm64 (push) Successful in 1m53s
Release latest / push-manifest (push) Successful in 15s
Release latest / sync-to-hub-docker-io (push) Successful in 1m57s
fix(ci): skip build workflow on master branch
2026-06-05 11:55:38 +02:00

47 lines
1.1 KiB
YAML

name: Build
on:
pull_request:
types:
- opened
- reopened
- synchronize
workflow_dispatch: {}
jobs:
build-arm64:
runs-on: ubuntu-latest-arm64
steps:
- uses: actions/checkout@v6.0.3
- uses: docker/setup-qemu-action@v4.1.0
- uses: docker/setup-buildx-action@v4.1.0
- name: Build image
run: |
TAG=latest
docker buildx build \
--platform linux/arm64 \
--file Dockerfile \
--provenance false \
--tag git.cryptic.systems/volker.raschek/docker-compose:${TAG}-arm64 \
.
build-amd64:
runs-on: ubuntu-latest-amd64
steps:
- uses: actions/checkout@v6.0.3
- uses: docker/setup-qemu-action@v4.1.0
- uses: docker/setup-buildx-action@v4.1.0
- name: Build image
run: |
TAG=latest
docker buildx build \
--platform linux/amd64 \
--file Dockerfile \
--provenance false \
--tag git.cryptic.systems/volker.raschek/docker-compose:${TAG}-amd64 \
.