Only perform one release at a time

This commit is contained in:
kixelated 2023-09-17 22:52:26 -07:00 committed by GitHub
parent 2696a56885
commit f2c1a0e460
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 1 deletions

View File

@ -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