From 1e8b9f2577c122f044622e6677f6adebb3b36e45 Mon Sep 17 00:00:00 2001 From: fr12k Date: Fri, 17 Oct 2025 13:21:07 +0200 Subject: [PATCH] fix(github): use a dedicated token for releases This will ensure that the release created with this dedicated token triggers also the publish workflow as well. Currently, using the default GITHUB_TOKEN does not trigger other workflows. --- .github/workflows/release.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1034e0d..f474722 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,4 +18,5 @@ jobs: contents: write pull-requests: write uses: containifyci/.github/.github/workflows/release.yml@v1 - secrets: inherit + secrets: + RELEASE_GITHUB_TOKEN: ${{ secrets.CONTAINIFYCI_RELEASE_TOKEN }}