Skip to content

Commit 30071fe

Browse files
committed
concurrency improvement
In case of simultaneous triggered workflows keep only the latest for a corresponding openssl branch and cancel prior ones.
1 parent bb34876 commit 30071fe

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/deploy-site.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,15 @@ on:
1111
permissions:
1212
contents: write
1313

14+
concurrency:
15+
group: deploy-${{ github.event.inputs.branch }}
16+
cancel-in-progress: false
17+
1418
jobs:
1519
build:
1620
runs-on: ubuntu-latest
1721
steps:
18-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v6
1923
- name: "Fetch gh-pages branch"
2024
run: git fetch origin gh-pages --depth=1
2125
- name: "Set permissions"

0 commit comments

Comments
 (0)