summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornicolargo <nicolas@nicolargo.com>2024-03-10 17:32:04 +0100
committernicolargo <nicolas@nicolargo.com>2024-03-10 17:32:04 +0100
commitdd6c5f7cd02cd3dc30e13ff01564f4db3b0d7637 (patch)
treeee8ead1b35f52aa9058fa91148abe4b2edcdc1b4
parent9a3ec31f198f59cc9d8b07084245c2784b407ac2 (diff)
Use secrets in CI actions
-rw-r--r--.github/workflows/ci.yml5
1 files changed, 5 insertions, 0 deletions
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]