Fix concurrentcy group for building develop

This commit is contained in:
Jorge Martín
2023-08-02 11:19:28 +02:00
parent acd2623598
commit d79b05878a

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