[playground] Avoid concurrent deployments (#16834)

## Summary

Cancel in-flight deployments when queuing a new deployment.
This commit is contained in:
Micha Reiser 2025-03-18 18:24:16 +01:00 committed by GitHub
parent a69f6240cc
commit 81759be14b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 0 deletions

View File

@ -14,6 +14,10 @@ on:
- "playground" - "playground"
- ".github/workflows/publish-knot-playground.yml" - ".github/workflows/publish-knot-playground.yml"
concurrency:
group: ${{ github.workflow }}-${{ github.ref_name }}
cancel-in-progress: true
env: env:
CARGO_INCREMENTAL: 0 CARGO_INCREMENTAL: 0
CARGO_NET_RETRY: 10 CARGO_NET_RETRY: 10