Files
CouchLog/.gitea/workflows/linux_arm64_docker.yaml
Henry Trumme 9fd5846883
Some checks failed
Build Linux x64 / build-linux-x64 (push) Has been cancelled
Build Windows x64 / build-windows-x64 (push) Has been cancelled
Build ARM64 Linux / build-arm64 (push) Has been cancelled
.gitea/workflows/linux_arm64_docker.yaml aktualisiert
2025-12-10 22:46:22 +01:00

30 lines
849 B
YAML

jobs:
build-docker-linux-x64:
runs-on: [self-hosted, linux, arm64, docker]
steps:
- name: Install packages
run: apk add --no-cache git curl wget unzip bash nodejs npm docker
- name: Checkout
uses: actions/checkout@v4
- name: Setup Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and Load
uses: docker/build-push-action@v5
with:
context: .
platforms: linux/arm64
load: true # Lädt es in den lokalen Docker Daemon des Runners
tags: myapp:linux-arm64
- name: Save Image to Tar
run: docker save -o myimage.tar myapp:linux-arm64
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: docker-image-arm64
path: myimage.tar
retention-days: 1