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:
kekrby 2022-10-02 17:58:59 +03:00
parent ea31491118
commit bcfa84572f

View file

@ -10,6 +10,8 @@ on:
jobs:
CI:
runs-on: ubuntu-latest
concurrency:
group: CI
steps:
- name: Checkout
uses: actions/checkout@v3