Skip to content

Commit

Permalink
Fix environment variable
Browse files Browse the repository at this point in the history
  • Loading branch information
reyery committed Apr 29, 2024
1 parent da6094f commit fccfbe6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docker.yml
Expand Up @@ -39,13 +39,13 @@ jobs:
push: true
tags: |
${{ secrets.DOCKERHUB_USERNAME }}/cea:dev
ghcr.io/${{ env.REPO_NAME }}/cea:dev
ghcr.io/${REPO_NAME}/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/${{ env.REPO_NAME }}/cea:${GITHUB_REF##*/} \
ghcr.io/${{ env.REPO_NAME }}/cea:dev
--tag ghcr.io/${REPO_NAME}/cea:${GITHUB_REF##*/} \
ghcr.io/${REPO_NAME}/cea:dev

0 comments on commit fccfbe6

Please sign in to comment.