Skip to content
This repository has been archived by the owner on Oct 15, 2024. It is now read-only.

Commit

Permalink
cicd: force lowercase for image name
Browse files Browse the repository at this point in the history
  • Loading branch information
seppzer0 committed Nov 10, 2023
1 parent 38eaaee commit 228d764
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/github-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ jobs:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build
run: docker build . -t ghcr.io/$GITHUB_REPOSITORY
run: docker build . -t ghcr.io/${GITHUB_REPOSITORY,,}
- name: Publish
run: |
if [ "${{ env.SKIP_UPLOAD }}" == "false" ]; then
docker push ghcr.io/$GITHUB_REPOSITORY
docker push ghcr.io/${GITHUB_REPOSITORY,,}
else
echo "[ * ] Docker image upload skipped."
fi

0 comments on commit 228d764

Please sign in to comment.