fix(ci): remove signing

Signed-off-by: aarnphm-ec2-dev <29749331+aarnphm@users.noreply.github.com>
This commit is contained in:
aarnphm-ec2-dev
2023-07-19 23:01:23 +00:00
parent d92b136780
commit b747e3b4b8

View File

@@ -80,10 +80,10 @@ echo "Releasing $release version $RELEASE_VERSION..." && hatch version "${RELEAS
jq --arg release_version "${RELEASE_VERSION}" '.version = $release_version' < package.json > package.json.tmp && mv package.json.tmp package.json
towncrier build --yes --version "${RELEASE_VERSION}" && git add CHANGELOG.md changelog.d
git add src/openllm/__about__.py package.json && git commit -S -m "infra: prepare for release ${RELEASE_VERSION} [generated]"
git add src/openllm/__about__.py package.json && git commit -m "infra: prepare for release ${RELEASE_VERSION} [generated]"
git push origin main
echo "Releasing tag ${RELEASE_VERSION}..." && git tag -a "v${RELEASE_VERSION}" -S -m "Release ${RELEASE_VERSION} [generated by GitHub Actions]"
echo "Releasing tag ${RELEASE_VERSION}..." && git tag -a "v${RELEASE_VERSION}" -m "Release ${RELEASE_VERSION} [generated by GitHub Actions]"
git push origin "v${RELEASE_VERSION}"
echo "Finish releasing version ${RELEASE_VERSION}"