Skip to content

Commit

Permalink
fix(ci): do not cancel all matrix builds for one
Browse files Browse the repository at this point in the history
  • Loading branch information
paambaati committed Apr 24, 2023
1 parent 2fc4cc3 commit 1471593
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Expand Up @@ -49,7 +49,7 @@ jobs:
- { index: 3, os-name: 'windows-latest', os-label: 'Windows' }
runs-on: ${{ matrix.os.os-name }}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.os.os-name }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
steps:
- name: checkout code
Expand Down

0 comments on commit 1471593

Please sign in to comment.