Fix concurrentcy group for building develop with a matrix of variants

This commit is contained in:
Jorge Martín
2023-08-02 11:20:25 +02:00
parent d79b05878a
commit 414bbd2f2c

View File

@@ -24,7 +24,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-{0}-{1}', matrix.variant, github.ref) }}
group: ${{ github.ref == 'refs/heads/develop' && format('build-develop-{0}-{1}', matrix.variant, github.sha) || format('build-{0}-{1}', matrix.variant, github.ref) }}
cancel-in-progress: true
steps:
- uses: actions/checkout@v3