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 a6d6869e55
commit 99909e9b9f

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