Skip to content

Commit

Permalink
Fix build image (#1272)
Browse files Browse the repository at this point in the history
  • Loading branch information
yrong committed Aug 27, 2024
1 parent 1ae7014 commit 235d9ea
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release-relayer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,12 +126,12 @@ jobs:
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push Docker image
uses: docker/build-push-action@v6
with:
context: ./relayer
push: true
tags: ${{ steps.create_tag.outputs.tag }}
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ steps.create_tag.outputs.tag }}
2 changes: 1 addition & 1 deletion relayer/start-relayer-in-docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ stop_relayer()

build_image()
{
docker build -f Dockerfile -t snowbridge-relayer .
docker build -f Dockerfile -t ghcr.io/snowfork/snowbridge-relay .
}

if [ -z "${from_start_services:-}" ]; then
Expand Down

0 comments on commit 235d9ea

Please sign in to comment.