Skip to content

Commit

Permalink
chore: add concurrency group to release job (#315)
Browse files Browse the repository at this point in the history
This adds a concurrency group to the release workflow so only 1 release
will occur at a time

fixes #284
  • Loading branch information
corymhall authored Dec 24, 2024
1 parent 39bf63b commit b052cdd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@ jobs:
needs:
- build
- lint
concurrency:
group: release
cancel-in-progress: false
steps:
- name: Checkout Repo
uses: actions/checkout@v4
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ jobs:

release:
name: Release
concurrency:
group: release
cancel-in-progress: false
runs-on: ubuntu-latest
needs:
- build
Expand Down

0 comments on commit b052cdd

Please sign in to comment.