Skip to content

Commit

Permalink
fix(): Remove hardcoded name in GH actions
Browse files Browse the repository at this point in the history
  • Loading branch information
n0th1ng-else committed Mar 29, 2024
1 parent 120f708 commit 45e9e14
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
context: .
push: true
tags: |
ghcr.io/${{ secrets.DOCKER_USERNAME }}/voice-to-text-bot/${{ env.CONTAINER_NAME }}:${{ inputs.sha }}
ghcr.io/${{ env.GITHUB_REPOSITORY }}/${{ env.CONTAINER_NAME }}:${{ inputs.sha }}
build-args: APP_VERSION=${{ inputs.version }}

- name: Publish to Registry and extra tag
Expand All @@ -55,8 +55,8 @@ jobs:
context: .
push: true
tags: |
ghcr.io/${{ secrets.DOCKER_USERNAME }}/voice-to-text-bot/${{ env.CONTAINER_NAME }}:${{ inputs.docker-tag }}
ghcr.io/${{ secrets.DOCKER_USERNAME }}/voice-to-text-bot/${{ env.CONTAINER_NAME }}:${{ inputs.sha }}
ghcr.io/${{ env.GITHUB_REPOSITORY }}/${{ env.CONTAINER_NAME }}:${{ inputs.docker-tag }}
ghcr.io/${{ env.GITHUB_REPOSITORY }}/${{ env.CONTAINER_NAME }}:${{ inputs.sha }}
build-args: APP_VERSION=${{ inputs.version }}

- name: Add image reference
Expand Down

0 comments on commit 45e9e14

Please sign in to comment.