Skip to content

Commit

Permalink
add concurrency to actions
Browse files Browse the repository at this point in the history
  • Loading branch information
dan-german committed Apr 10, 2024
1 parent d53be14 commit d1fa92c
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/build-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ env:
BUILD_TYPE: Release
jobs:
build:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/build-macos-13.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ env:
BUILD_TYPE: Release
jobs:
build:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
runs-on: macos-13
steps:
- uses: actions/checkout@v3
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/build-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ env:
jobs:
build:
runs-on: macos-14
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
steps:
- uses: actions/checkout@v3
with:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ env:
BUILD_TYPE: Release
jobs:
build:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit d1fa92c

Please sign in to comment.