From b747e3b4b8d4e00594db9b59f4a1a2aa547925a4 Mon Sep 17 00:00:00 2001 From: aarnphm-ec2-dev <29749331+aarnphm@users.noreply.github.com> Date: Wed, 19 Jul 2023 23:01:23 +0000 Subject: [PATCH] fix(ci): remove signing Signed-off-by: aarnphm-ec2-dev <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 4a65941b..e4e48dab 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 -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}"