From 71473976ac5c387b5939493a8d7ec238f404da43 Mon Sep 17 00:00:00 2001 From: Ashley Cui Date: Fri, 10 May 2024 16:14:20 -0400 Subject: [PATCH] [CI:DOCS] Trigger windows installer action properly Add the needed GH_TOKEN for the windows action. Signed-off-by: Ashley Cui --- .github/workflows/release-artifacts.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release-artifacts.yml b/.github/workflows/release-artifacts.yml index 015e623b57cc..61f67a8008cc 100644 --- a/.github/workflows/release-artifacts.yml +++ b/.github/workflows/release-artifacts.yml @@ -180,5 +180,7 @@ jobs: if: >- steps.check.outputs.windows_amd == 'true' || steps.actual_dryrun.outputs.dryrun == 'false' + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | - gh workflow run upload-win-installer.yml -f ${{steps.getversion.outputs.version}} -f dryrun=false + gh workflow run upload-win-installer.yml -f version=${{steps.getversion.outputs.version}} -f dryrun=false