Skip to content

Commit

Permalink
use correct info to log in to docker hub
Browse files Browse the repository at this point in the history
  • Loading branch information
steezeburger committed Jul 9, 2024
1 parent 2813f96 commit 5a85db4
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
- v[0-9]+.*

env:
REGISTRY_IMAGE: informalsystems/hermes
REGISTRY_IMAGE: astriaorg/hermes

jobs:
docker-build:
Expand Down Expand Up @@ -42,8 +42,8 @@ jobs:
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
username: ${{ secrets.DOCKER_USER }}
password: ${{ secrets.DOCKER_TOKEN }}

- name: Build and push by digest
id: build
Expand Down Expand Up @@ -95,8 +95,8 @@ jobs:
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
username: ${{ secrets.DOCKER_USER }}
password: ${{ secrets.DOCKER_TOKEN }}

- name: Create manifest list and push
working-directory: /tmp/digests
Expand All @@ -112,7 +112,7 @@ jobs:
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Push image to GHCR
Expand Down

0 comments on commit 5a85db4

Please sign in to comment.