From a85dcb2c5e6fc1b2629751fc71ed76319a28d9ef Mon Sep 17 00:00:00 2001 From: rabii-chaarani Date: Fri, 12 Jul 2024 11:04:36 +0930 Subject: [PATCH] ci: fix if condition to publish dev branch --- .github/workflows/release-please.yml | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index 68c35ce..84c115a 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -49,18 +49,7 @@ jobs: release-please: runs-on: ubuntu-latest - if: github.ref == 'refs/heads/master' - steps: - - uses: GoogleCloudPlatform/release-please-action@v4 - id: release - with: - release-type: python - package-name: LoopDataConverter - version-file: LoopDataConverter/version.py - outputs: - release_created: ${{ steps.release.outputs.release_created }} - - if: github.ref == 'refs/heads/dev' + if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/dev' steps: - uses: GoogleCloudPlatform/release-please-action@v4 id: release