Switch to self-hosted runner with .NET SDK 10.0 on host
Some checks failed
Build & Test / build (push) Failing after 22s
Build & Test / publish (push) Has been skipped

This commit is contained in:
OpenClaw CI 2026-06-07 20:11:32 +00:00
parent 7830d3fa86
commit 76e0173d70

View file

@ -8,8 +8,10 @@ on:
jobs: jobs:
build: build:
runs-on: dotnet runs-on: self-hosted
steps: steps:
- uses: actions/checkout@v4
- name: Restore dependencies - name: Restore dependencies
run: dotnet restore run: dotnet restore
@ -22,8 +24,10 @@ jobs:
publish: publish:
needs: build needs: build
if: github.ref == 'refs/heads/main' if: github.ref == 'refs/heads/main'
runs-on: dotnet runs-on: self-hosted
steps: steps:
- uses: actions/checkout@v4
- name: Publish Blazor WASM - name: Publish Blazor WASM
run: dotnet publish -c Release -o /tmp/publish run: dotnet publish -c Release -o /tmp/publish