chore: added Release Pipeline for Linux-Arm64-Docker-Image
Some checks failed
Build ARM64 Linux / build-arm64 (push) Has been cancelled
Build Linux x64 / build-linux-x64 (push) Has been cancelled
Build Docker Linux x64 / build-docker-linux-x64 (push) Has been cancelled
Build Windows x64 / build-windows-x64 (push) Has been cancelled

This commit is contained in:
2025-12-12 17:43:07 +01:00
parent e05ba63149
commit 05ccae8dc5

View File

@@ -6,7 +6,7 @@ on:
- main
jobs:
build-docker-linux-x64:
build-docker-linux-arm64:
runs-on: [self-hosted, linux, arm64, docker]
steps:
- name: Install packages
@@ -31,3 +31,37 @@ jobs:
path: CouchLog-Linux-ARM64-Docker-Image.tar
if-no-files-found: error
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 }}