Skip to content

Commit 41d0d0d

Browse files
Michael Vasseurvmcj
authored andcommitted
Use the correct variables
1 parent 0f87362 commit 41d0d0d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build-contributor-container-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ jobs:
2323
uses: docker/login-action@v3
2424
with:
2525
registry: ghcr.io
26-
username: ${{ env.DOCKERHUB_USERNAME }}
27-
password: ${{ env.DOCKERHUB_TOKEN }}
26+
username: ${{ secrets.DOCKERHUB_USERNAME }}
27+
password: ${{ secrets.DOCKERHUB_TOKEN }}
2828

2929
- name: Build and push
3030
uses: docker/build-push-action@v5

.github/workflows/build-domjudge-container-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ jobs:
2727
- name: Login to Docker Hub
2828
uses: docker/login-action@v3
2929
with:
30-
username: ${{ env.DOCKERHUB_USERNAME }}
31-
password: ${{ env.DOCKERHUB_TOKEN }}
30+
username: ${{ secrets.DOCKERHUB_USERNAME }}
31+
password: ${{ secrets.DOCKERHUB_TOKEN }}
3232

3333
- name: If needed overwrite the DOMJUDGE_VERSION for this run
3434
run: |

0 commit comments

Comments
 (0)