Skip to content

Commit 77c58b5

Browse files
authored
[Bugfix]: Add Docker Hub login step to deployment workflows (#958)
Add Docker Hub login step to deployment workflows Signed-off-by: Kevin Ullyott <kevin.ullyott@canyongbs.com>
1 parent 5fbcea4 commit 77c58b5

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

.github/workflows/prerelease.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,12 @@ jobs:
2222
ref: ${{ github.head_ref }}
2323
token: ${{ secrets.PAT }}
2424

25+
- name: Login to Docker Hub
26+
uses: docker/login-action@b45d80f862d83dbcd57f89517bcf500b2ab88fb2 #4.0.0
27+
with:
28+
username: ${{ secrets.DOCKERHUB_USERNAME }}
29+
password: ${{ secrets.DOCKERHUB_PASSWORD }}
30+
2531
- name: Configure AWS credentials
2632
uses: aws-actions/configure-aws-credentials@8df5847569e6427dd6c4fb1cf565c83acfa8afa7 #6.0.0
2733
with:

.github/workflows/release.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,12 @@ jobs:
2222
ref: ${{ github.head_ref }}
2323
token: ${{ secrets.PAT }}
2424

25+
- name: Login to Docker Hub
26+
uses: docker/login-action@b45d80f862d83dbcd57f89517bcf500b2ab88fb2 #4.0.0
27+
with:
28+
username: ${{ secrets.DOCKERHUB_USERNAME }}
29+
password: ${{ secrets.DOCKERHUB_PASSWORD }}
30+
2531
- name: Configure AWS credentials
2632
uses: aws-actions/configure-aws-credentials@8df5847569e6427dd6c4fb1cf565c83acfa8afa7 #6.0.0
2733
with:

0 commit comments

Comments
 (0)