Skip to content

Commit

Permalink
Move concurrency inside the job
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcarcell committed Sep 16, 2024
1 parent 90b6595 commit 189fec9
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/concretize.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,16 @@ on:
pull_request:
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
concretize:
strategy:
matrix:
image: [alma9, ubuntu22]
build_type: [release, nightly]
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.image }}-${{ matrix.build_type }}
cancel-in-progress: true
steps:
- uses: actions/checkout@v4
- name: Start container
Expand Down

0 comments on commit 189fec9

Please sign in to comment.