diff --git a/.github/workflows/create-releases.yml b/.github/workflows/create-releases.yml index e118bbef..9f0396a3 100644 --- a/.github/workflows/create-releases.yml +++ b/.github/workflows/create-releases.yml @@ -117,21 +117,11 @@ jobs: uses: pypa/gh-action-pypi-publish@b7f401de30cb6434a1e19f805ff006643653240e # ratchet:pypa/gh-action-pypi-publish@release/v1 with: print-hash: true - publish-docker-images: - if: github.repository_owner == 'bentoml' - needs: - - release - - publish-python - name: Publish new base Docker images on GHCR - uses: bentoml/OpenLLM/.github/workflows/build.yml@main # ratchet:exclude - with: - tags: ${{ needs.release.outputs.version }} prepare-next-dev-cycle: needs: - release - publish-python - binary-distribution - - publish-docker-images runs-on: ubuntu-latest permissions: contents: write diff --git a/openllm-node/package.json b/openllm-node/package.json index 6607a695..cea70c69 100644 --- a/openllm-node/package.json +++ b/openllm-node/package.json @@ -1,6 +1,6 @@ { "name": "@bentoml/openllm-node", - "version": "0.4.27", + "version": "0.4.28.dev0", "description": "NodeJS library for OpenLLM", "type": "module", "repository": { diff --git a/package.json b/package.json index 04fabf30..3b9fa8d0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@bentoml/openllm-monorepo", - "version": "0.4.27", + "version": "0.4.28.dev0", "description": "OpenLLM: Operating LLMs in production", "author": "Aaron Pham <29749331+aarnphm@users.noreply.github.com>", "license": "Apache-2.0", diff --git a/tools/run-release-action b/tools/run-release-action index f730f687..da5fe617 100755 --- a/tools/run-release-action +++ b/tools/run-release-action @@ -100,3 +100,8 @@ while true; do fi sleep 10 done + +echo "Sleeping for 7 minutes to allow the release to propagate and PyPI to be published..." +sleep 420 +echo "Building OpenLLM container for ${RELEASE_TAG}..." +gh workflow run build.yml -R bentoml/openllm -r "${RELEASE_TAG}"