Files
CouchLog/.gitea/workflows/linux_arm64_docker-release.yaml
Henry Trumme 01a35e5e7e
Some checks failed
Build Docker Linux ARM64 Release / build-docker-linux-arm64-release (push) Failing after 8s
.gitea/workflows/linux_arm64_docker-release.yaml aktualisiert
2025-12-21 22:33:37 +01:00

34 lines
1015 B
YAML

name: Build Docker Linux ARM64 Release
run-name: Release-Docker-Linux-ARM64
on: [push]
jobs:
build-docker-linux-arm64-release:
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: Login container registry
run: docker login https://192.168.178.45 -u ${{ secrets.REGISTRY_USER }} -p ${{ secrets.REGISTRY_PASSWORD }}
- name: Setup .NET10
uses: actions/setup-dotnet@v3
with:
dotnet-version: '10.0.x'
- name: Clone the repository
uses: actions/checkout@v4
- name: Build Linux ARM64 Docker Image
run: docker build -t gitea.penry.de/couchlog/linux-arm64 .
- name: Make Tar from image
run: docker save -o couchlog-linux-arm64.tar gitea.penry.de/couchlog/linux-arm64
- name: Release
uses: akkuman/gitea-release-action@v1
with:
files: |-
couchlog-linux-arm64.tar