Only perform one release at a time
This commit is contained in:
parent
2696a56885
commit
f2c1a0e460
|
@ -1,4 +1,4 @@
|
|||
name: Publish Docker Image
|
||||
name: Release Docker Image
|
||||
|
||||
# This workflow uses actions that are not certified by GitHub.
|
||||
# They are provided by a third-party and are governed by
|
||||
|
@ -27,6 +27,11 @@ jobs:
|
|||
# with sigstore/fulcio when running outside of PRs.
|
||||
id-token: write
|
||||
|
||||
# Only one release at a time and cancel prior releases
|
||||
concurrency:
|
||||
group: release
|
||||
cancel-in-progress: true
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v3
|
Loading…
Reference in New Issue