From b6679be3013dc30b2f6aafa53eb34a82684acdf3 Mon Sep 17 00:00:00 2001 From: Aaron <29749331+aarnphm@users.noreply.github.com> Date: Wed, 19 Jul 2023 18:48:01 -0400 Subject: [PATCH] fix: release script not to signed Signed-off-by: Aaron <29749331+aarnphm@users.noreply.github.com> --- .github/actions/release.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/release.sh b/.github/actions/release.sh index b37b4e59..4a65941b 100755 --- a/.github/actions/release.sh +++ b/.github/actions/release.sh @@ -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 -sm "infra: prepare for release ${RELEASE_VERSION} [generated]" +git add src/openllm/__about__.py package.json && git commit -S -m "infra: prepare for release ${RELEASE_VERSION} [generated]" git push origin main -echo "Releasing tag ${RELEASE_VERSION}..." && git tag -a "v${RELEASE_VERSION}" -sm "Release ${RELEASE_VERSION} [generated by GitHub Actions]" +echo "Releasing tag ${RELEASE_VERSION}..." && git tag -a "v${RELEASE_VERSION}" -S -m "Release ${RELEASE_VERSION} [generated by GitHub Actions]" git push origin "v${RELEASE_VERSION}" echo "Finish releasing version ${RELEASE_VERSION}"