We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ee77f2 commit d436918Copy full SHA for d436918
.github/workflows/publish.yml
@@ -69,9 +69,9 @@ jobs:
69
if [ "$tag_exists_on_github" == "true" ]; then
70
echo "Tag $package@$version already exists on GitHub. Skipping creating a new tag."
71
else
72
- echo "Creating tag $package@$version on GitHub"
73
- git tag "$package@$version"
74
- git push origin "$package@$version"
+ echo "Creating release $package@$version on GitHub"
+ bash '${{ github.workspace }}/.github/scripts/release_content.sh' "${{ github.workspace }}/$location/CHANGELOG.md" "$version"
+ gh release create "$package@$version" --title "$package@$version" --notes-file /tmp/changelog.md
75
fi
76
continue
77
0 commit comments