Allow concurrency with the build job.

This commit is contained in:
Benoit Marty 2023-01-12 18:13:15 +01:00 committed by Benoit Marty
parent 2d83d1901a
commit f810a2ceaf

View file

@ -19,7 +19,7 @@ jobs:
fail-fast: false
# Allow all jobs on develop. Just one per PR.
concurrency:
group: ${{ github.ref == 'refs/heads/develop' && format('build-develop-{0}', github.sha) || format('build-debug-{0}', github.ref) }}
group: ${{ github.ref == 'refs/heads/develop' && format('maestro-develop-{0}', github.sha) || format('maestro-debug-{0}', github.ref) }}
cancel-in-progress: true
steps:
- uses: actions/checkout@v3