Skip to content

Commit

Permalink
Remove / from tag names
Browse files Browse the repository at this point in the history
This broke the publish step for all pull request started workflows.
Because this tag is used for both creating a directory and creating a
tar file.
  • Loading branch information
janos-r committed Jan 10, 2025
1 parent ce409b4 commit 610e596
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,8 @@ jobs:
if [[ $platform =~ "windows" ]]; then
exe=".exe"
fi
pkgname=helix-$GITHUB_REF_NAME-$platform
tag=${GITHUB_REF_NAME//\//}
pkgname=helix-$tag-$platform
mkdir -p $pkgname
cp $source/LICENSE $source/README.md $pkgname
mkdir $pkgname/contrib
Expand Down

0 comments on commit 610e596

Please sign in to comment.