Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Commit

Permalink
Fix the user used to login to Docker hub (#7610)
Browse files Browse the repository at this point in the history
  • Loading branch information
chevdor authored and s0me0ne-unkn0wn committed Aug 15, 2023
1 parent 2dda590 commit 730a1c8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release-40_publish-rc-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ jobs:
- name: Login to Dockerhub
uses: docker/login-action@v2
with:
username: ${{ inputs.owner }}
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Push Container image for ${{ matrix.binary }}
Expand Down
2 changes: 1 addition & 1 deletion scripts/ci/common/lib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ fetch_release_artifacts() {
-H "Accept: application/vnd.github+json" \
-H "Authorization: Bearer ${GITHUB_TOKEN}" \
-H "X-GitHub-Api-Version: 2022-11-28" \
https://api.github.com/repos/${REPO}/releases/$RELEASE_ID > release.json
https://api.github.com/repos/${REPO}/releases/${RELEASE_ID} > release.json

# Get Asset ids
ids=($(jq -r '.assets[].id' < release.json ))
Expand Down

0 comments on commit 730a1c8

Please sign in to comment.