From c17d9f285058c29f3787a1c59f9149d9c2ec14d4 Mon Sep 17 00:00:00 2001 From: Zhiqiang Wang Date: Tue, 22 Mar 2022 10:44:47 +0800 Subject: [PATCH] Add CI/CD for release/* branch --- .github/workflows/ci-test.yml | 4 ++-- .github/workflows/pypi-release.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-test.yml b/.github/workflows/ci-test.yml index 401b9434..aa5784a1 100644 --- a/.github/workflows/ci-test.yml +++ b/.github/workflows/ci-test.yml @@ -4,9 +4,9 @@ name: CI testing on: push: - branches: [ main ] + branches: [ main, 'release/*' ] pull_request: - branches: [ main ] + branches: [ main, 'release/*' ] jobs: Unittest: diff --git a/.github/workflows/pypi-release.yml b/.github/workflows/pypi-release.yml index ad605b7f..225cd463 100644 --- a/.github/workflows/pypi-release.yml +++ b/.github/workflows/pypi-release.yml @@ -4,7 +4,7 @@ name: Publish 🐍 to PyPI.org on: push: - branches: [ main, "release/*" ] + branches: [ main, 'release/*' ] release: types: [ published ]