From f92ed5ea606cd5f96b92c2b78cb62cc014d3fd3a Mon Sep 17 00:00:00 2001 From: Shawn Strasser Date: Wed, 28 Aug 2024 10:23:05 -0700 Subject: [PATCH] corrected branch name --- .github/workflows/pr-tests.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pr-tests.yml b/.github/workflows/pr-tests.yml index afb9752..750e8c7 100644 --- a/.github/workflows/pr-tests.yml +++ b/.github/workflows/pr-tests.yml @@ -2,9 +2,9 @@ name: Python Tests and Publish on: push: - branches: [ atspm-aggregation ] + branches: [ atspm-package ] pull_request: - branches: [ atspm-aggregation ] + branches: [ atspm-package ] release: types: [created] workflow_dispatch: @@ -45,8 +45,9 @@ jobs: if: ${{ always() }} publish: + needs: test runs-on: ubuntu-latest - if: github.event_name == 'release' + if: github.event_name == 'release' && success() steps: - uses: actions/checkout@v3