Browse Source

Only allow one build in parallel per ref

tags/v0.10.0
Jason Couture 2 years ago
parent
commit
bfe3ad50aa
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      .github/workflows/main.yml

+ 3
- 0
.github/workflows/main.yml View File

@@ -4,6 +4,9 @@ on:
branches: [master]
pull_request:
branches: [master]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
build:


Loading…
Cancel
Save