Skip to content

Commit

Permalink
fix: fix casing on repo name
Browse files Browse the repository at this point in the history
  • Loading branch information
goproslowyo committed Jun 1, 2024
1 parent 174dd99 commit 93240ae
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/build-and-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,11 @@ jobs:
run: |
REPO_OWNER="${{ github.repository_owner }}"
REPO_NAME="${{ github.repository }}"
REPO_NAME=$(echo "$REPO_NAME" | tr '[:upper:]' '[:lower:]')
SHORT_SHA=$(git rev-parse --short HEAD)
VERSION="v1.1.6"
TAG1="ghcr.io/${REPO_OWNER}/${REPO_NAME}:latest"
TAG2="ghcr.io/infosecstreams/streamstatus:${VERSION}-0-${SHORT_SHA}"
TAG2="ghcr.io/${REPO_OWNER}/${REPO_NAME}:${VERSION}-0-${SHORT_SHA}"
echo "IMAGE_TAG1=$TAG1" >> $GITHUB_ENV
echo "IMAGE_TAG2=$TAG2" >> $GITHUB_ENV
Expand Down

0 comments on commit 93240ae

Please sign in to comment.