mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-06-30 09:13:29 +00:00
gha: release: login-action: Don't specify docker.io registry
For some bizarre reason, the login-action will simply fail to authenticate to docker.io in it's specified as a registry. The way to proceed, instead, is to *not* specify any registry as it'd be used by default. Fixes: #6943 Signed-off-by: Fabiano Fidêncio <fabiano.fidencio@intel.com>
This commit is contained in:
parent
df77fefce8
commit
d10c9be603
1
.github/workflows/release-amd64.yaml
vendored
1
.github/workflows/release-amd64.yaml
vendored
@ -17,7 +17,6 @@ jobs:
|
|||||||
- name: Login to Kata Containers docker.io
|
- name: Login to Kata Containers docker.io
|
||||||
uses: docker/login-action@v2
|
uses: docker/login-action@v2
|
||||||
with:
|
with:
|
||||||
registry: docker.io
|
|
||||||
username: ${{ secrets.DOCKER_USERNAME }}
|
username: ${{ secrets.DOCKER_USERNAME }}
|
||||||
password: ${{ secrets.DOCKER_PASSWORD }}
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||||
|
|
||||||
|
1
.github/workflows/release-arm64.yaml
vendored
1
.github/workflows/release-arm64.yaml
vendored
@ -17,7 +17,6 @@ jobs:
|
|||||||
- name: Login to Kata Containers docker.io
|
- name: Login to Kata Containers docker.io
|
||||||
uses: docker/login-action@v2
|
uses: docker/login-action@v2
|
||||||
with:
|
with:
|
||||||
registry: docker.io
|
|
||||||
username: ${{ secrets.DOCKER_USERNAME }}
|
username: ${{ secrets.DOCKER_USERNAME }}
|
||||||
password: ${{ secrets.DOCKER_PASSWORD }}
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||||
|
|
||||||
|
1
.github/workflows/release-s390x.yaml
vendored
1
.github/workflows/release-s390x.yaml
vendored
@ -17,7 +17,6 @@ jobs:
|
|||||||
- name: Login to Kata Containers docker.io
|
- name: Login to Kata Containers docker.io
|
||||||
uses: docker/login-action@v2
|
uses: docker/login-action@v2
|
||||||
with:
|
with:
|
||||||
registry: docker.io
|
|
||||||
username: ${{ secrets.DOCKER_USERNAME }}
|
username: ${{ secrets.DOCKER_USERNAME }}
|
||||||
password: ${{ secrets.DOCKER_PASSWORD }}
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||||
|
|
||||||
|
1
.github/workflows/release.yaml
vendored
1
.github/workflows/release.yaml
vendored
@ -33,7 +33,6 @@ jobs:
|
|||||||
- name: Login to Kata Containers docker.io
|
- name: Login to Kata Containers docker.io
|
||||||
uses: docker/login-action@v2
|
uses: docker/login-action@v2
|
||||||
with:
|
with:
|
||||||
registry: docker.io
|
|
||||||
username: ${{ secrets.DOCKER_USERNAME }}
|
username: ${{ secrets.DOCKER_USERNAME }}
|
||||||
password: ${{ secrets.DOCKER_PASSWORD }}
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user