Files
CouchLog/.gitea/workflows/arm64.yaml
Henry cddbbfc09e
Some checks failed
Build Linux x64 / build-linux-x64 (push) Failing after 7s
Build Docker Linux x64 / build-docker-linux-x64 (push) Failing after 1m50s
Build Windows x64 / build-windows-x64 (push) Failing after 7s
Build ARM64 Linux / build-arm64 (push) Failing after 3m59s
added some Workflows
2025-12-08 23:51:05 +01:00

30 lines
653 B
YAML

name: Build ARM64 Linux
on:
push:
branches:
- main
jobs:
build-arm64:
runs-on: [self-hosted, linux, arm64, dotnet]
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0.x'
- name: Restore dependencies
run: dotnet restore
- name: Build ARM64 Linux
run: dotnet publish -c Release -r linux-arm64 --self-contained false -o ./artifacts/linux-arm64
- name: Upload ARM64 artifact
uses: actions/upload-artifact@v3
with:
name: linux-arm64
path: ./artifacts/linux-arm64