Browse Source

[workflow] fixed pypi release workflow error (#2328)

pull/2333/head
Frank Lee 2 years ago committed by GitHub
parent
commit
6e34cc0830
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      .github/workflows/release_pypi.yml

2
.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

Loading…
Cancel
Save