We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ac0577 commit 4a4b6b0Copy full SHA for 4a4b6b0
.github/workflows/unit-test.yaml
@@ -13,7 +13,7 @@ jobs:
13
- uses: actions/checkout@v4
14
- uses: docker/login-action@v3
15
with:
16
- registry: ${{ vars.REGISTRY }}
+ registry: ${{ secrets.REGISTRY }}
17
username: ${{ secrets.REGISTRY_USER }}
18
password: ${{ secrets.REGISTRY_TOKEN }}
19
- name: Install requirements
@@ -27,4 +27,4 @@ jobs:
27
run: venv/bin/python -m pytest tests/utest.py -W ignore::UserWarning
28
working-directory: ${{ github.workspace }}/test-runner
29
env:
30
- REGISTRY: ${{ vars.REGISTRY }}
+ REGISTRY: ${{ secrets.REGISTRY }}
0 commit comments