From f111e9ca6bbbde1a4ab67d01031cb215f393fa65 Mon Sep 17 00:00:00 2001 From: Florian Heilmann Date: Thu, 21 Dec 2023 01:53:51 +0100 Subject: [PATCH] fix workflow secrets --- .github/workflows/pull_request_post_process_ci.yml | 4 +++- .github/workflows/push_main_ci.yml | 2 ++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pull_request_post_process_ci.yml b/.github/workflows/pull_request_post_process_ci.yml index 0ac0e3f1e..fbdba2e01 100644 --- a/.github/workflows/pull_request_post_process_ci.yml +++ b/.github/workflows/pull_request_post_process_ci.yml @@ -8,4 +8,6 @@ jobs: post_process_pr_ci: if: ${{ github.event.workflow_run.event == 'pull_request' }} uses: VoronDesign/.github/.github/workflows/voronusers-ci-pr-postprocess.yml@main - \ No newline at end of file + secrets: + IMAGEKIT_PRIVATE_KEY: ${{ secrets.IMAGEKIT_PRIVATE_KEY}} + IMAGEKIT_PUBLIC_KEY: ${{ secrets.IMAGEKIT_PUBLIC_KEY }} \ No newline at end of file diff --git a/.github/workflows/push_main_ci.yml b/.github/workflows/push_main_ci.yml index 645519c12..e4cc98a75 100644 --- a/.github/workflows/push_main_ci.yml +++ b/.github/workflows/push_main_ci.yml @@ -7,3 +7,5 @@ jobs: voron_ci_push_main: name: VoronCI push main uses: VoronDesign/.github/.github/workflows/voronusers-ci-push-main.yml@main + secrets: + VORON_BOT_GITHUB_PAT: ${{ secrets.VORON_BOT_GITHUB_PAT }} \ No newline at end of file