mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-22 01:22:46 +02:00
Remove concurrency restriction on develop.
This commit is contained in:
@@ -17,9 +17,10 @@ jobs:
|
||||
name: Release
|
||||
runs-on: macos-11
|
||||
|
||||
# Only allow a single run of this workflow on each branch (cancel older runs automatically)
|
||||
concurrency:
|
||||
group: alpha-${{ 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('alpha-develop-{0}', github.sha) || format('alpha-{0}', github.ref) }}
|
||||
cancel-in-progress: true
|
||||
|
||||
steps:
|
||||
|
||||
Reference in New Issue
Block a user