Skip to content

Commit 33fab13

Browse files
committed
add PAT
1 parent 2eac578 commit 33fab13

File tree

3 files changed

+18
-0
lines changed

3 files changed

+18
-0
lines changed

.github/workflows/debian-packages.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,12 @@ jobs:
7878
ubuntu_distro: noble
7979

8080
steps:
81+
- name: Login to Docker Hub
82+
uses: docker/login-action@v3
83+
with:
84+
username: ${{ secrets.DOCKERHUB_USERNAME }}
85+
password: ${{ secrets.DOCKERHUB_TOKEN }}
86+
8187
- name: Checkout code
8288
uses: actions/checkout@v4
8389
with:

.github/workflows/ros-tests.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,12 @@ jobs:
3232
ubuntu_distro: noble
3333

3434
steps:
35+
- name: Login to Docker Hub
36+
uses: docker/login-action@v3
37+
with:
38+
username: ${{ secrets.DOCKERHUB_USERNAME }}
39+
password: ${{ secrets.DOCKERHUB_TOKEN }}
40+
3541
- name: Checkout code
3642
uses: actions/checkout@v4
3743
with:

.github/workflows/smoke-tests.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,12 @@ jobs:
5959
ubuntu_distro: noble
6060

6161
steps:
62+
- name: Login to Docker Hub
63+
uses: docker/login-action@v3
64+
with:
65+
username: ${{ secrets.DOCKERHUB_USERNAME }}
66+
password: ${{ secrets.DOCKERHUB_TOKEN }}
67+
6268
- name: Setup environment
6369
run: |
6470
apt-get update -qq

0 commit comments

Comments
 (0)