Skip to content

Commit 8364156

Browse files
committed
chore: add concurrency settings to Android and iOS build workflows
1 parent 84e5c2e commit 8364156

2 files changed

Lines changed: 9 additions & 0 deletions

File tree

.github/workflows/android-build.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ on:
2626
- '**/react-native.config.js'
2727
- '**/nitro.json'
2828

29+
concurrency:
30+
group: ${{ github.workflow }}-${{ github.ref }}
31+
cancel-in-progress: true
32+
2933
jobs:
3034
build_new:
3135
name: Build Android Example App (new architecture)

.github/workflows/ios-build.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,11 @@ on:
3737
env:
3838
USE_CCACHE: 1
3939

40+
41+
concurrency:
42+
group: ${{ github.workflow }}-${{ github.ref }}
43+
cancel-in-progress: true
44+
4045
jobs:
4146
build_new:
4247
name: Build iOS Example App (new architecture)

0 commit comments

Comments
 (0)