Skip to content

Commit 956927d

Browse files
committed
Fix Docker Hub login
1 parent ec75b9f commit 956927d

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ jobs:
1010
runs-on: ubuntu-latest
1111
env:
1212
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
13-
DOCKER_REGISTRY: hub.docker.com
14-
DOCKER_IMAGE_NAME: ${{ github.repository }}
1513
steps:
1614
- name: Check out the repo
1715
uses: actions/checkout@v2
@@ -26,15 +24,14 @@ jobs:
2624
- name: Log in to the registry
2725
uses: docker/login-action@v1
2826
with:
29-
registry: ${{ env.DOCKER_REGISTRY }}
3027
username: ${{ secrets.DOCKER_USERNAME }}
3128
password: ${{ secrets.DOCKER_PASSWORD }}
3229

3330
- name: Set up metadata
3431
id: meta
3532
uses: docker/metadata-action@v3
3633
with:
37-
images: ${{ env.DOCKER_REGISTRY }}/${{ env.DOCKER_IMAGE_NAME }}
34+
images: dipdup/dipdup
3835
tags: |
3936
type=pep440,pattern={{version}}
4037
type=pep440,pattern={{major}}
@@ -44,7 +41,7 @@ jobs:
4441
id: meta-pytezos
4542
uses: docker/metadata-action@v3
4643
with:
47-
images: ${{ env.DOCKER_REGISTRY }}/${{ env.DOCKER_IMAGE_NAME }}
44+
images: dipdup/dipdup
4845
tags: |
4946
type=pep440,pattern={{version}}-pytezos
5047
type=pep440,pattern={{major}}-pytezos

0 commit comments

Comments
 (0)