Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ env:

jobs:
build:
runs-on: ubuntu-latest
runs-on: self-hosted

Copilot AI Apr 29, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Using only runs-on: self-hosted makes the job eligible for any self-hosted runner (including Windows/macOS), but this workflow assumes a Linux/bash environment (find, grep, awk, sed -i, etc.). To avoid non-deterministic failures, pin the runner labels to the intended platform/arch (e.g., runs-on: [self-hosted, linux, x64]) or your specific runner label/group used for releases.

Suggested change
runs-on: self-hosted
runs-on: [self-hosted, linux, x64]

Copilot uses AI. Check for mistakes.
steps:
- name: Collect Workflow Telemetry
uses: catchpoint/workflow-telemetry-action@v2
Expand Down
Loading