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 -