From 6e34cc0830e55ab1140f1162fa2c62cf62fc4f66 Mon Sep 17 00:00:00 2001 From: Frank Lee Date: Thu, 5 Jan 2023 10:52:43 +0800 Subject: [PATCH] [workflow] fixed pypi release workflow error (#2328) --- .github/workflows/release_pypi.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release_pypi.yml b/.github/workflows/release_pypi.yml index 2e706b009..7f3f63cf3 100644 --- a/.github/workflows/release_pypi.yml +++ b/.github/workflows/release_pypi.yml @@ -10,7 +10,7 @@ on: jobs: build-n-publish: - if: github.event_name == "workflow_dispatch" || github.repository == 'hpcaitech/ColossalAI' && github.event.pull_request.merged == true && github.base_ref == 'main' + if: github.event_name == 'workflow_dispatch' || github.repository == 'hpcaitech/ColossalAI' && github.event.pull_request.merged == true && github.base_ref == 'main' name: Build and publish Python 🐍 distributions 📦 to PyPI runs-on: ubuntu-latest timeout-minutes: 20