Skip to content

Commit 2180f93

Browse files
authored
Merge pull request #379 from OpenCOMPES/fix_release
prevent release workflows to run in parallel, and bump version
2 parents 16dae43 + 8cec005 commit 2180f93

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,12 @@ on:
1818
# Allows you to run this workflow manually from the Actions tab
1919
workflow_dispatch:
2020

21+
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
22+
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
23+
concurrency:
24+
group: "release"
25+
cancel-in-progress: false
26+
2127
jobs:
2228
prerelease:
2329
if: github.ref == 'refs/heads/main'

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "sed-processor"
33
packages = [
44
{include = "sed"}
55
]
6-
version = "0.1.9a5"
6+
version = "0.1.9a6"
77
description = "Single Event Data Frame Processor: Backend to handle photoelectron resolved datastreams"
88
authors = ["OpenCOMPES team <[email protected]>"]
99
readme = "README.md"

0 commit comments

Comments
 (0)