Skip to content

Commit

Permalink
Fix master docker build due to tag beaing latest and not master
Browse files Browse the repository at this point in the history
  • Loading branch information
Husky-Devel committed Nov 11, 2024
1 parent 98212ef commit c43c0ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
push: ${{ github.event_name != 'pull_request' }}
tags: |
ghcr.io/${{ github.repository }}:${{ steps.tag.outputs.tag }}
${{ github.ref == 'refs/heads/master' && 'ghcr.io/${{ github.repository }}:latest' || '' }}
${{ github.ref == 'refs/heads/master' && 'ghcr.io/${{ github.repository }}:master' || '' }}
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max
build-args: |
Expand Down

0 comments on commit c43c0ed

Please sign in to comment.