Skip to content

Commit

Permalink
fix(ci): Remove slashes in docker references
Browse files Browse the repository at this point in the history
  • Loading branch information
sgillespie committed Apr 8, 2024
1 parent a544286 commit 2158eb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release-ghcr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
# Downcase the package repository, because docker reference
# are required to be lower case
REPO_OWNER="$(echo ${{ github.repository_owner }} | tr '[:upper:]' '[:lower:]')"
IMAGE_TAG="$GITHUB_REF_NAME"
IMAGE_TAG="$(echo $GITHUB_REF_NAME | tr '/' '_')"
echo "REPO_OWNER=${REPO_OWNER}" >> "$GITHUB_ENV"
echo "IMAGE_TAG=${IMAGE_TAG}" >> "$GITHUB_ENV"
Expand Down

0 comments on commit 2158eb8

Please sign in to comment.