Skip to content

Commit

Permalink
Fix docker versioning again
Browse files Browse the repository at this point in the history
  • Loading branch information
vmesel committed Mar 13, 2024
1 parent d7ffd18 commit c14a422
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/docker-versioning.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ jobs:
username: ${{ github.actor }}
password: ${{ secrets.PKG_GITHUB_TOKEN }}

- name: ghcr.io/talkdai/dialog:${{ github.ref }}
- name: ghcr.io/talkdai/dialog:${{ github.ref_name }}
env:
GITHUB_REF: ${{ github.ref }}
GITHUB_REF: ${{ github.ref_name }}
run: |
docker build -t ghcr.io/talkdai/dialog:${{ github.ref }} .
docker push ghcr.io/talkdai/dialog:${{ github.ref }}
docker build -t ghcr.io/talkdai/dialog:${{ github.ref_name }} .
docker push ghcr.io/talkdai/dialog:${{ github.ref_name }}

0 comments on commit c14a422

Please sign in to comment.