From dd6c5f7cd02cd3dc30e13ff01564f4db3b0d7637 Mon Sep 17 00:00:00 2001 From: nicolargo Date: Sun, 10 Mar 2024 17:32:04 +0100 Subject: [PATCH] Use secrets in CI actions --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e7725265..08df8ce4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,4 +20,9 @@ jobs: needs: [quality, test] build: uses: ./.github/workflows/build.yml + secrets: + TEST_PYPI_API_TOKEN: ${{ secrets.TEST_PYPI_API_TOKEN }} + PYPI_API_TOKEN: ${{ secrets.PYPI_API_TOKEN }} + DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }} + DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }} needs: [quality, test, webui]