This is an automated email from the ASF dual-hosted git repository.
pcongiusti pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-k.git
The following commit(s) were added to refs/heads/main by this push:
new cc24f5d19 fix(ci): proper token
cc24f5d19 is described below
commit cc24f5d197c1858323629268087bb76c665108f6
Author: Pasquale Congiusti <[email protected]>
AuthorDate: Thu Oct 30 08:43:51 2025 +0100
fix(ci): proper token
---
.github/actions/release-nightly/action.yml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/.github/actions/release-nightly/action.yml
b/.github/actions/release-nightly/action.yml
index 86b518abf..f0ab37144 100644
--- a/.github/actions/release-nightly/action.yml
+++ b/.github/actions/release-nightly/action.yml
@@ -126,7 +126,7 @@ runs:
- name: Delete existing release
shell: bash
env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ GITHUB_TOKEN: ${{ inputs.secretGithubToken }}
run: |
TAG=v${{ env.VERSION }}
echo "Checking for existing release for tag $TAG..."
@@ -152,7 +152,7 @@ runs:
- name: Create release and upload artifacts
shell: bash
env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ GITHUB_TOKEN: ${{ inputs.secretGithubToken }}
run: |
TAG=v${{ env.VERSION }}
FILES="./camel-k-client*.tar.gz sbom.json"