Skip to content

Commit

Permalink
PIA-000: Enable concurrent workflows on push to master
Browse files Browse the repository at this point in the history
  • Loading branch information
kp-laura-sempere committed Dec 22, 2023
1 parent 54957b3 commit 1dcd117
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/development_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ name: development_build
on:
push:
branches:
- master
- PIA-000_rename_master_workflows

workflow_dispatch:
concurrency:
group: "${{ github.ref }}"
group: "${{ github.run_id }}"
cancel-in-progress: true
jobs:
build:
development_build:
runs-on: macos-13
env:
CERTIFICATE_PASSWORD: ${{ secrets.DEVELOPER_CERTIFICATE_PASSWORD }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/testflight_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ name: testflight_deploy
on:
push:
branches:
- master
- PIA-000_rename_master_workflows

workflow_dispatch:
concurrency:
group: "${{ github.ref }}"
group: "${{ github.run_id }}"
cancel-in-progress: true
jobs:
build:
Expand Down

0 comments on commit 1dcd117

Please sign in to comment.