mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-23 01:52:44 +02:00
Remove concurrency restriction on develop.
This commit is contained in:
@@ -18,9 +18,10 @@ jobs:
|
||||
name: Build
|
||||
runs-on: macos-11
|
||||
|
||||
# Only allow a single run of this workflow on each branch (cancel older runs automatically)
|
||||
concurrency:
|
||||
group: build-${{ github.head_ref }}
|
||||
# When running on develop, use the sha to allow all runs of this workflow to run concurrently.
|
||||
# Otherwise only allow a single run of this workflow on each branch, automatically cancelling older runs.
|
||||
group: ${{ github.ref == 'refs/heads/develop' && format('build-develop-{0}', github.sha) || format('build-{0}', github.ref) }}
|
||||
cancel-in-progress: true
|
||||
|
||||
steps:
|
||||
|
||||
Reference in New Issue
Block a user