chore: Outsourced Release Workflow for Linux-ARM64-Docker in own file
Some checks failed
Build ARM64 Linux / build-arm64 (push) Successful in 5m39s
Build Docker Linux ARM64 / build-docker-linux-arm64 (push) Successful in 6m29s
Build Linux x64 / build-linux-x64 (push) Successful in 5m32s
Build Docker Linux x64 / build-docker-linux-x64 (push) Failing after 40s
Build Windows x64 / build-windows-x64 (push) Successful in 7m17s
Build Docker Linux ARM64 Release / build-docker-linux-arm64-release (release) Failing after 2m32s

This commit is contained in:
2025-12-12 17:45:51 +01:00
parent 05ccae8dc5
commit 4b1ee17547
2 changed files with 33 additions and 35 deletions

View File

@@ -0,0 +1,32 @@
name: Build Docker Linux ARM64 Release
on:
release:
types: [published]
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: Checkout
uses: actions/checkout@v4
- name: Setup Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build Linux ARM64 Docker Image
run: docker build -t couchlog-linux-arm64 .
- name: Save Docker Image to Tar
run: docker save -o CouchLog-Linux-ARM64-Docker-Image.tar couchlog-linux-arm64
- name: Upload Artifact
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: CouchLog-Linux-ARM64-Docker-Image.tar
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

View File

@@ -31,37 +31,3 @@ jobs:
path: CouchLog-Linux-ARM64-Docker-Image.tar path: CouchLog-Linux-ARM64-Docker-Image.tar
if-no-files-found: error if-no-files-found: error
retention-days: 1 retention-days: 1
name: Build Docker Linux ARM64 Release
on:
release:
types: [published]
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: Checkout
uses: actions/checkout@v4
- name: Setup Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build Linux ARM64 Docker Image
run: docker build -t couchlog-linux-arm64 .
- name: Save Docker Image to Tar
run: docker save -o CouchLog-Linux-ARM64-Docker-Image.tar couchlog-linux-arm64
- name: Upload Artifact
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: CouchLog-Linux-ARM64-Docker-Image.tar
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}