fix: revert gitea.ref to github.ref — Forgejo Actions uses github context

Forgejo Actions is GitHub Actions-compatible; expressions use github.*
not gitea.*. gitea.ref causes a YAML schema validation error.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Thomas SharedInbox
2026-05-13 11:06:22 +02:00
co-authored by Claude Sonnet 4.6
parent 035d18b8e8
commit dd5a4dff5e
+1 -1
View File
@@ -28,7 +28,7 @@ jobs:
name: Build Linux Release
runs-on: self-hosted
needs: check
if: gitea.ref == 'refs/heads/main'
if: github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v4