Skip to content

Commit

Permalink
convert image name to lower in gh action
Browse files Browse the repository at this point in the history
  • Loading branch information
tclose committed Mar 6, 2024
1 parent 138bab7 commit 25b5666
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ jobs:
- name: Get Docker image tag from git tag
id: imagetag
run: |
echo "IMAGE_TAG=$(git describe --tags --abbrev=0)" >> $GITHUB_OUTPUT
echo "IMAGE_TAG=$(git describe --tags --abbrev=0 | awk '{print tolower($0)}')" >> $GITHUB_OUTPUT
- name: Build and push Docker image
uses: docker/build-push-action@v3
Expand Down

0 comments on commit 25b5666

Please sign in to comment.