From fcb80ef5ce808537df1e269e203dcd234a4a7657 Mon Sep 17 00:00:00 2001 From: "Max P." Date: Sat, 14 Jun 2025 18:57:58 +0200 Subject: [PATCH] feat(workflows): add token input for release action - Adds `token` input to the release workflow to use a secret token. - Enhances automation by enabling authenticated release publishing. --- .gitea/workflows/release.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index 94dbbf9..a26a534 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -15,3 +15,5 @@ jobs: fetch-depth: 0 - name: Release uses: https://git.0xmax42.io/actions/auto-changelog-release-action@main + with: + token: ${{ secrets.RELEASE_PUBLISH_TOKEN }}