Skip to content

Commit 8dadf9a

Browse files
glen-84michaelstaib
authored andcommitted
Added Docker Hub login step to CI and coverage workflows (#8114)
1 parent 552d5d6 commit 8dadf9a

File tree

3 files changed

+13
-0
lines changed

3 files changed

+13
-0
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -185,6 +185,12 @@ jobs:
185185
run: dotnet build ${{ matrix.path }} --framework net9.0 --verbosity q
186186
timeout-minutes: 5
187187

188+
- name: Log in to Docker Hub
189+
uses: docker/login-action@v3
190+
with:
191+
username: ${{ vars.DOCKERHUB_USERNAME }}
192+
password: ${{ secrets.DOCKERHUB_TOKEN }}
193+
188194
- name: Run tests
189195
id: run-tests
190196
timeout-minutes: 15

.github/workflows/coverage.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,12 @@ jobs:
6767
run: dotnet build ${{ matrix.path }} --framework net9.0 --verbosity q
6868
timeout-minutes: 5
6969

70+
- name: Log in to Docker Hub
71+
uses: docker/login-action@v3
72+
with:
73+
username: ${{ vars.DOCKERHUB_USERNAME }}
74+
password: ${{ secrets.DOCKERHUB_TOKEN }}
75+
7076
- name: Run tests
7177
id: run-tests
7278
timeout-minutes: 15

dictionary.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ depersist
3939
deprioritization
4040
deprioritized
4141
Dispatchable
42+
DOCKERHUB
4243
drawio
4344
enisdenjo
4445
entityframework

0 commit comments

Comments
 (0)