From de05716b072f81351c603d82dafa17ee751b3dad Mon Sep 17 00:00:00 2001 From: "Max P." Date: Mon, 26 May 2025 17:14:47 +0200 Subject: [PATCH] fix(workflows): correct token syntax in releases sync action - Replace `${{ ACTIONS_RUNTIME_TOKEN }}` with `$ACTIONS_RUNTIME_TOKEN` to fix incorrect token reference in the workflow configuration. - Ensures proper authentication for the releases sync action. --- .gitea/workflows/sync-github.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/sync-github.yml b/.gitea/workflows/sync-github.yml index e710a1a..1af96bb 100644 --- a/.gitea/workflows/sync-github.yml +++ b/.gitea/workflows/sync-github.yml @@ -18,7 +18,7 @@ jobs: - name: Run Releases Sync Action uses: https://git.0xmax42.io/actions/releases-sync@main with: - gitea_token: ${{ ACTIONS_RUNTIME_TOKEN }} + gitea_token: $ACTIONS_RUNTIME_TOKEN gitea_url: https://git.0xmax42.io gitea_owner: maxp gitea_repo: ait