From 4150ac48f041eb649db5c0d94c4516e60c4e384c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20=C5=A0ediv=C3=BD?= Date: Sun, 30 Mar 2025 17:45:18 +0200 Subject: [PATCH] update workflows. --- .github/workflows/client_test.yml | 3 ++- .github/workflows/webpage_deploy.yml | 2 +- .github/workflows/webpage_test.yml | 4 ++-- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/client_test.yml b/.github/workflows/client_test.yml index c59a30f5..0af8a5cc 100644 --- a/.github/workflows/client_test.yml +++ b/.github/workflows/client_test.yml @@ -15,4 +15,5 @@ jobs: uses: ./.github/workflows/client_build.yml with: # Do not upload artifacts for test builds - with-arifact: false + with-artifact: false + secrets: inherit diff --git a/.github/workflows/webpage_deploy.yml b/.github/workflows/webpage_deploy.yml index 74d48334..f0b003a4 100644 --- a/.github/workflows/webpage_deploy.yml +++ b/.github/workflows/webpage_deploy.yml @@ -12,7 +12,7 @@ on: jobs: webpage-build: name: Build Webpage Artifacts - uses: .github/workflows/webpage_build.yml + uses: ./.github/workflows/webpage_build.yml secrets: inherit webpage-deploy: diff --git a/.github/workflows/webpage_test.yml b/.github/workflows/webpage_test.yml index 8391cea7..97a05bb6 100644 --- a/.github/workflows/webpage_test.yml +++ b/.github/workflows/webpage_test.yml @@ -12,8 +12,8 @@ on: jobs: webpage-test: name: Test Webpage Build - uses: .github/workflows/webpage_build.yml + uses: ./.github/workflows/webpage_build.yml with: + # Do not upload artifacts for test builds with-artifact: false secrets: inherit -