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 41de9b4 commit 214a527Copy full SHA for 214a527
1 file changed
scripts/release.sh
@@ -138,8 +138,14 @@ if [[ "$VERSION" =~ -rc[0-9]+$ ]]; then
138
# It's a pre-release because it contains `rc`
139
gh release create "$VERSION" --generate-notes --prerelease
140
echo "Pre-release $VERSION created."
141
+
142
+ # Also release in the organization
143
+ gh release create "$VERSION" --generate-notes --prerelease --repo "mbzuai-nlp/openfactcheck"
144
else
145
# It's a full release
146
gh release create "$VERSION" --generate-notes
147
echo "Release $VERSION created."
148
149
150
+ gh release create "$VERSION" --generate-notes --repo "mbzuai-nlp/openfactcheck"
151
fi
0 commit comments