summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornicolargo <nicolas@nicolargo.com>2024-03-10 17:34:20 +0100
committernicolargo <nicolas@nicolargo.com>2024-03-10 17:34:20 +0100
commit5731cadbe34d922f7214c03089d8cf6afe0c7764 (patch)
treea3f782ad2846bf8bfa0e5da0d1553d5b81f3a0ee
parentdd6c5f7cd02cd3dc30e13ff01564f4db3b0d7637 (diff)
Use secrets in CI actions 2
-rw-r--r--.github/workflows/ci.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 08df8ce4..db1bad14 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -23,6 +23,6 @@ jobs:
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 }}
+ DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
+ DOCKER_TOKEN: ${{ secrets.DOCKER_TOKEN }}
needs: [quality, test, webui]