Files
docker-compose-docker/.gitea/workflows/build.yaml
Markus Pesch b24564d1b6
Some checks failed
Auto release / tag_on_change (push) Successful in 7s
Lint Markdown files / markdown-lint (push) Successful in 9s
Build / build-amd64 (push) Failing after 5s
Build / build-arm64 (push) Failing after 1m40s
feat(deps): upgrade to docker-compose v5
The following downloads the finished docker-compose v5 binary and delivers it as
a scratch container image.
2025-12-05 16:08:01 +01:00

46 lines
941 B
YAML

name: Build
on:
pull_request:
types:
- opened
- reopened
- synchronize
push:
branches:
- master
workflow_dispatch: {}
jobs:
build-arm64:
runs-on: ubuntu-latest-arm64
steps:
- uses: actions/checkout@v6.0.1
- 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.1
- 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 \
.