Skip to content

Commit

Permalink
Fix tag name lowercase
Browse files Browse the repository at this point in the history
  • Loading branch information
reyery committed Apr 29, 2024
1 parent 2074f72 commit 88fc734
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docker.yml
Expand Up @@ -36,13 +36,13 @@ jobs:
push: true
tags: |
${{ secrets.DOCKERHUB_USERNAME }}/cea:dev
ghcr.io/${{ github.repository }}/cea:dev
ghcr.io/${GITHUB_REPOSITORY,,}/cea:dev
- name: Push version tag on release
if: github.event_name == 'release' && github.event.action == 'published'
run: |
docker buildx imagetools create \
--tag ${{ secrets.DOCKERHUB_USERNAME }}/cea:${GITHUB_REF##*/} \
--tag ghcr.io/${{ github.repository }}/cea:${GITHUB_REF##*/} \
ghcr.io/${{ github.repository }}/cea:dev
--tag ghcr.io/${GITHUB_REPOSITORY,,}/cea:${GITHUB_REF##*/} \
ghcr.io/${GITHUB_REPOSITORY,,}/cea:dev

0 comments on commit 88fc734

Please sign in to comment.