We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10e0a8a commit 04d8607Copy full SHA for 04d8607
.github/workflows/ci.yml
@@ -38,5 +38,6 @@ jobs:
38
- name: Build and Push Docker image
39
working-directory: "./"
40
run: |
41
- docker build -t ghcr.io/${{ github.repository }}:${{ steps.set-tag.outputs.IMAGE_TAG }} .
42
- docker push ghcr.io/${{ github.repository }}:${{ steps.set-tag.outputs.IMAGE_TAG }}
+ REPO_NAME="${GITHUB_REPOSITORY,,}"
+ docker build -t ghcr.io/${REPO_NAME}:${{ steps.set-tag.outputs.IMAGE_TAG }} .
43
+ docker push ghcr.io/${REPO_NAME}:${{ steps.set-tag.outputs.IMAGE_TAG }}
0 commit comments