ci: restore github.* context variables required by Forgejo schema validator
All checks were successful
release / Build (darwin/amd64) (push) Successful in 28s
release / Build (linux/amd64) (push) Successful in 26s
release / Build (windows/amd64) (push) Successful in 27s
release / Build (darwin/arm64) (push) Successful in 25s
release / Build (linux/arm64) (push) Successful in 27s
release / Build (windows/arm64) (push) Successful in 26s
release / Publish release (push) Successful in 3s

This commit is contained in:
Victor Hugo Vargas Servin 2026-08-04 02:25:03 -07:00
parent 280c8789f6
commit 3813909457

View file

@ -49,7 +49,7 @@ jobs:
- name: Build binary - name: Build binary
env: env:
VERSION: ${{ gitea.ref_name }} VERSION: ${{ github.ref_name }}
run: | run: |
set -euo pipefail set -euo pipefail
mkdir -p dist mkdir -p dist
@ -96,9 +96,9 @@ jobs:
- name: Create Forgejo release and upload assets - name: Create Forgejo release and upload assets
env: env:
TOKEN: ${{ secrets.FORGEJO_TOKEN }} TOKEN: ${{ secrets.FORGEJO_TOKEN }}
TAG: ${{ gitea.ref_name }} TAG: ${{ github.ref_name }}
API_URL: ${{ gitea.api_url }} API_URL: ${{ github.api_url }}
REPO: ${{ gitea.repository }} REPO: ${{ github.repository }}
run: | run: |
set -euo pipefail set -euo pipefail
IS_PRERELEASE="false" IS_PRERELEASE="false"