Fix the user used to login to Docker hub (#7610)

This commit is contained in:
Chevdor
2023-08-14 13:11:11 +02:00
committed by GitHub
parent 1f437d9e11
commit b617877b36
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -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 }}
+1 -1
View File
@@ -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 ))