From 2ceb49db9fa71dddd70dbf816a349a0f68f8a5f6 Mon Sep 17 00:00:00 2001 From: Matthieu Date: Wed, 1 Apr 2026 14:28:20 +0200 Subject: [PATCH] fix : use REGISTRY_TOKEN instead of RELEASE_TOKEN in CI workflows Co-Authored-By: Claude Opus 4.6 (1M context) --- .gitea/workflows/auto-tag-develop.yml | 2 +- .gitea/workflows/release-artefact.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/auto-tag-develop.yml b/.gitea/workflows/auto-tag-develop.yml index e08e983..64d70a5 100644 --- a/.gitea/workflows/auto-tag-develop.yml +++ b/.gitea/workflows/auto-tag-develop.yml @@ -13,7 +13,7 @@ jobs: uses: actions/checkout@v4 with: fetch-depth: 0 - token: ${{ secrets.RELEASE_TOKEN }} + token: ${{ secrets.REGISTRY_TOKEN }} persist-credentials: true - name: Create next tag from VERSION diff --git a/.gitea/workflows/release-artefact.yml b/.gitea/workflows/release-artefact.yml index 80a9699..e9d201c 100644 --- a/.gitea/workflows/release-artefact.yml +++ b/.gitea/workflows/release-artefact.yml @@ -64,4 +64,4 @@ jobs: with: files: release/inventory-${{ github.ref_name }}.tar.gz env: - GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }} + GITHUB_TOKEN: ${{ secrets.REGISTRY_TOKEN }}