Skip to content

Commit

Permalink
Merge pull request #20 from TheJacksonLaboratory/G3-145-release-v-0-1…
Browse files Browse the repository at this point in the history
…-0-of-geneweaver-api-fix-cicd

Fixing release skip check
  • Loading branch information
bergsalex authored Jan 25, 2024
2 parents 3b6e661 + 97acb16 commit cbc23f8
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 @@ -98,15 +98,15 @@ jobs:
deploy_stage:
name: "Deploy: Stage"
needs: [ build, version, deploy_sqa]
if: ${{ needs.version.outputs.should_release == 'true' && needs.version.outputs.prerelease == 'false'}}
if: ${{ needs.version.outputs.should_release }} == 'true' && ${{ needs.version.outputs.prerelease }} == 'false'
uses: ./.github/workflows/_skaffold-deploy-k8s.yml
secrets: inherit
with:
environment: "jax-cluster-prod-10--stage"
deploy_prod:
name: "Deploy: Prod"
needs: [ build, version, deploy_stage]
if: ${{ needs.version.outputs.should_release == 'true' && needs.version.outputs.prerelease == 'false'}}
if: ${{ needs.version.outputs.should_release }} == 'true' && ${{ needs.version.outputs.prerelease }} == 'false'
uses: ./.github/workflows/_skaffold-deploy-k8s.yml
secrets: inherit
with:
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.0.1"
version = "0.0.2"
description = "description"
authors = ["Jax Computational Sciences <cssc@jax.org>"]
packages = [
Expand Down

0 comments on commit cbc23f8

Please sign in to comment.