Files
CouchLog/.gitea/workflows/linux_x64.yaml
Henry d4555fc694
Some checks failed
Build Docker Linux ARM64 Release / build-docker-linux-arm64-release (push) Has been cancelled
adapted Workflows
2025-12-21 21:20:07 +01:00

34 lines
831 B
YAML

name: Build Linux x64
on:
push:
branches:
#- main
jobs:
build-linux-x64:
runs-on: [self-hosted, linux, arm64, linux64, dotnet]
steps:
- name: Install packages
run: apk add --no-cache git curl wget unzip bash nodejs npm
- name: Checkout
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: '10.0.x'
- name: Restore dependencies
run: dotnet restore ./CouchLog/CouchLog.sln
- name: Build Linux x64
run: dotnet publish ./CouchLog/CouchLog.sln -c Release -r linux-x64 --self-contained false -o ./artifacts/linux-x64
- name: Upload Linux x64 artifact
uses: actions/upload-artifact@v3
with:
name: linux-x64
path: ./artifacts/linux-x64