Skip to content

Commit

Permalink
Merge pull request #2993 from redpanda-data/change-dockerhub-secret
Browse files Browse the repository at this point in the history
gha: remove hard-coded dockerhub username
  • Loading branch information
ivotron authored Nov 9, 2024
2 parents cbafa38 + 4d46ac4 commit f30000d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker_edge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,13 @@ jobs:
uses: aws-actions/aws-secretsmanager-get-secrets@v2
with:
secret-ids: |
,sdlc/prod/github/dockerhub_token
,sdlc/prod/github/dockerhub
parse-json-secrets: true

- name: Login to Docker Hub
uses: docker/#-action@v3
with:
username: vectorizedbot
username: ${{ env.DOCKERHUB_USER }}
password: ${{ env.DOCKERHUB_TOKEN }}

- name: Install Buildx
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,13 +124,13 @@ jobs:
uses: aws-actions/aws-secretsmanager-get-secrets@v2
with:
secret-ids: |
,sdlc/prod/github/dockerhub_token
,sdlc/prod/github/dockerhub
parse-json-secrets: true

- name: Login to Docker Hub
uses: docker/#-action@v3
with:
username: vectorizedbot
username: ${{ env.DOCKERHUB_USER }}
password: ${{ env.DOCKERHUB_TOKEN }}

- name: Install Buildx
Expand Down

0 comments on commit f30000d

Please # to comment.