Skip to content

Commit

Permalink
Not tagging the right user/repo
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastián Gómez committed Aug 10, 2023
1 parent 1cebd38 commit 72a4e94
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ on:

env:
config: Release
docker_user: sebagomez
repository: azurestorageexplorer

jobs:

Expand All @@ -32,14 +34,14 @@ jobs:
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: sebagomez
username: ${{ env.docker_user }}
password: ${{ secrets.DOCKERHUB_TOKEN }}


- name: Build and push Docker images
uses: docker/build-push-action@v4
with:
tags: latest,${{ env.build_number }}
tags: ${{ env.docker_user }}/${{ env.repository }}:latest,${{ env.docker_user }}/${{ env.repository }}:${{ env.build_number }}
build-args: BUILD=${{ env.build_number }}
context: ./src
push: true

0 comments on commit 72a4e94

Please sign in to comment.