CI: allow only one build to take place at a time
This will prevent the CI from building the same packages twice when a build gets triggered while there are other ongoing builds.
This commit is contained in:
parent
ea31491118
commit
bcfa84572f
1 changed files with 2 additions and 0 deletions
2
.github/workflows/CI.yml
vendored
2
.github/workflows/CI.yml
vendored
|
|
@ -10,6 +10,8 @@ on:
|
|||
jobs:
|
||||
CI:
|
||||
runs-on: ubuntu-latest
|
||||
concurrency:
|
||||
group: CI
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue