Skip to content

Commit

Permalink
ci: Never cancel release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jorisv committed Jan 28, 2025
1 parent b8ca94f commit 4a3a7fc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/release-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ on:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
# Only cancel workflow on new push if we are not releasing
cancel-in-progress: ${{ github.event_name == 'pull_request' }}

jobs:
build-wheel:
Expand Down

0 comments on commit 4a3a7fc

Please sign in to comment.