Skip to content

Commit

Permalink
Fix normalization for GitHub URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
ybiquitous committed Jul 12, 2024
1 parent 3e99d00 commit a010c35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test-ecosystem.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ jobs:
fullname=$(echo "${raw_url}" | sed -E 's/.*github.com\/([^/]+\/[^/]+)\.git$/\1/')
echo "fullname=${fullname}" >> "${GITHUB_OUTPUT}"
url=$(echo "${raw_url}" | sed -E 's/^git\+(.+)\.git$/\1/')
url=$(echo "${raw_url}" | sed -E 's/^git\+//' | sed -E 's/\.git$//' | sed -E 's/^git:/https:/')
echo "URL: ${url}"
echo "url=${url}" >> "${GITHUB_OUTPUT}"
Expand Down

0 comments on commit a010c35

Please sign in to comment.