From 381390945706b68233e26578e42aa6d118c7e66a Mon Sep 17 00:00:00 2001 From: Victor Vargas Date: Tue, 4 Aug 2026 02:25:03 -0700 Subject: [PATCH] ci: restore github.* context variables required by Forgejo schema validator --- .forgejo/workflows/release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.forgejo/workflows/release.yml b/.forgejo/workflows/release.yml index 2c81fab..ec301fd 100644 --- a/.forgejo/workflows/release.yml +++ b/.forgejo/workflows/release.yml @@ -49,7 +49,7 @@ jobs: - name: Build binary env: - VERSION: ${{ gitea.ref_name }} + VERSION: ${{ github.ref_name }} run: | set -euo pipefail mkdir -p dist @@ -96,9 +96,9 @@ jobs: - name: Create Forgejo release and upload assets env: TOKEN: ${{ secrets.FORGEJO_TOKEN }} - TAG: ${{ gitea.ref_name }} - API_URL: ${{ gitea.api_url }} - REPO: ${{ gitea.repository }} + TAG: ${{ github.ref_name }} + API_URL: ${{ github.api_url }} + REPO: ${{ github.repository }} run: | set -euo pipefail IS_PRERELEASE="false"