mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Keep each deployment job in a separate concurrency group (#3446)

authored by hailey.at and committed by

GitHub a1ac8468 00076ad1

+9 -4
+9 -4
.github/workflows/bundle-deploy-eas-update.yml
··· 18 18 description: Runtime version (in x.x.x format) that this update is for 19 19 required: true 20 20 21 - concurrency: 22 - group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }} 23 - cancel-in-progress: true 24 - 25 21 jobs: 26 22 bundleDeploy: 27 23 name: Bundle and Deploy EAS Update 28 24 runs-on: ubuntu-latest 25 + concurrency: 26 + group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}-deploy 27 + cancel-in-progress: true 29 28 outputs: 30 29 fingerprint-is-different: ${{ steps.fingerprint-debug.outputs.fingerprint-is-different }} 31 30 ··· 166 165 buildIfNecessaryIOS: 167 166 name: Build and Submit iOS 168 167 runs-on: macos-14 168 + concurrency: 169 + group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}-build-ios 170 + cancel-in-progress: false 169 171 needs: [bundleDeploy] 170 172 # Gotta check if its NOT '[]' because any md5 hash in the outputs is detected as a possible secret and won't be 171 173 # available here ··· 231 233 buildIfNecessaryAndroid: 232 234 name: Build and Submit Android 233 235 runs-on: ubuntu-latest 236 + concurrency: 237 + group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}-build-android 238 + cancel-in-progress: false 234 239 needs: [ bundleDeploy ] 235 240 # Gotta check if its NOT '[]' because any md5 hash in the outputs is detected as a possible secret and won't be 236 241 # available here