Skip to content

Commit

Permalink
ci: always run build and release on master branch
Browse files Browse the repository at this point in the history
  • Loading branch information
andreoliwa committed Aug 19, 2023
1 parent 5d23b6c commit 8113eb6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ jobs:

build:
needs: pre_job
if: needs.pre_job.outputs.should_skip != 'true'
# Always run the build step when pushing to master
if: needs.pre_job.outputs.should_skip != 'true' || (github.event_name == 'push' && github.ref == 'refs/heads/master')
name: "${{ matrix.python-version }} ${{ matrix.os }}"
strategy:
fail-fast: false
Expand Down

0 comments on commit 8113eb6

Please sign in to comment.