···1818 description: Runtime version (in x.x.x format) that this update is for
1919 required: true
20202121-concurrency:
2222- group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}
2323- cancel-in-progress: true
2424-2521jobs:
2622 bundleDeploy:
2723 name: Bundle and Deploy EAS Update
2824 runs-on: ubuntu-latest
2525+ concurrency:
2626+ group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}-deploy
2727+ cancel-in-progress: true
2928 outputs:
3029 fingerprint-is-different: ${{ steps.fingerprint-debug.outputs.fingerprint-is-different }}
3130···166165 buildIfNecessaryIOS:
167166 name: Build and Submit iOS
168167 runs-on: macos-14
168168+ concurrency:
169169+ group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}-build-ios
170170+ cancel-in-progress: false
169171 needs: [bundleDeploy]
170172 # Gotta check if its NOT '[]' because any md5 hash in the outputs is detected as a possible secret and won't be
171173 # available here
···231233 buildIfNecessaryAndroid:
232234 name: Build and Submit Android
233235 runs-on: ubuntu-latest
236236+ concurrency:
237237+ group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}-build-android
238238+ cancel-in-progress: false
234239 needs: [ bundleDeploy ]
235240 # Gotta check if its NOT '[]' because any md5 hash in the outputs is detected as a possible secret and won't be
236241 # available here