diff options
| author | seth <[email protected]> | 2023-11-17 21:04:52 -0500 |
|---|---|---|
| committer | seth <[email protected]> | 2023-11-17 21:04:52 -0500 |
| commit | c4187416c6b3eba292325c397b9dc020139ddab0 (patch) | |
| tree | 5c59a56e46559a119751802507ffdd594509a47d | |
| parent | 77d0cc3ae6aa83a1ec23778a0847f0eeea8eecb2 (diff) | |
actions: enforce concurrency for deploy
| -rw-r--r-- | .github/workflows/deploy.yaml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 8c3ecac..dd47015 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -9,6 +9,10 @@ jobs: deploy: runs-on: ubuntu-latest + concurrency: + group: deploy + cancel-in-progress: true + # https://github.com/sellout/bash-strict-mode/commit/9bf1d65c2f786a9887facfcb81e06d8b8b5f4667 if: github.event.check_suite.app.name == 'Garnix CI' && github.event.check_suite.conclusion == 'success' |
