Skip to content

Commit

Permalink
Merge pull request #60 from TheJacksonLaboratory/task/fix-incorrect-s…
Browse files Browse the repository at this point in the history
…hould-release-bool

Fixing version output conditional and bumping version
  • Loading branch information
bergsalex authored Apr 24, 2024
2 parents e42b7c7 + a5223e5 commit 0b3c982
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,10 @@ jobs:
# Check if this version tag already exists
if git rev-parse "v$version" >/dev/null 2>&1; then
echo "Version already released"
export SHOULD_RELEASE=true
export SHOULD_RELEASE=false
else
echo "New version detected"
export SHOULD_RELEASE=false
export SHOULD_RELEASE=true
fi
if [[ $version =~ [a-zA-Z] ]]; then
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "geneweaver-api"
version = "0.4.0b3"
version = "0.4.0b4"
description = "The Geneweaver API"
authors = [
"Alexander Berger <[email protected]>",
Expand Down

0 comments on commit 0b3c982

Please sign in to comment.