From 544257c3173ffba8e65c6afa9dd63a934e39ca2b Mon Sep 17 00:00:00 2001 From: Alexander Berger Date: Tue, 23 Apr 2024 13:13:58 -0400 Subject: [PATCH] Switching to pre-release b to test fix for prod deployment pipeline --- .github/workflows/release.yml | 10 +++++----- pyproject.toml | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 62a325c..3b6c735 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -92,13 +92,13 @@ jobs: build: name: "Build" needs: [ test, check-coverage, format-lint, version ] - if: ${{ needs.version.outputs.should_release == 'true' }} + if: needs.version.outputs.should_release == 'true' uses: ./.github/workflows/_skaffold-build-k8s.yml secrets: inherit deploy_sqa: name: "Deploy: SQA" needs: [build, version] - if: ${{ needs.version.outputs.should_release == 'true' }} + if: needs.version.outputs.should_release == 'true' uses: ./.github/workflows/_skaffold-deploy-k8s.yml secrets: inherit with: @@ -106,7 +106,7 @@ jobs: deploy_stage: name: "Deploy: Stage" needs: [ build, version, deploy_sqa] - if: ${{ needs.version.outputs.schedule_prod_release == 'true' }} + if: needs.version.outputs.schedule_prod_release == 'true' uses: ./.github/workflows/_skaffold-deploy-k8s.yml secrets: inherit with: @@ -114,7 +114,7 @@ jobs: deploy_prod: name: "Deploy: Prod" needs: [ build, version, deploy_stage] - if: ${{ needs.version.outputs.schedule_prod_release == 'true' }} + if: needs.version.outputs.schedule_prod_release == 'true' uses: ./.github/workflows/_skaffold-deploy-k8s.yml secrets: inherit with: @@ -123,7 +123,7 @@ jobs: name: "Create Github Release Draft" runs-on: ubuntu-latest needs: [ deploy_prod ] - if: ${{ needs.version.outputs.schedule_prod_release == 'true' }} + if: needs.version.outputs.schedule_prod_release == 'true' steps: - name: Create GitHub Release uses: softprops/action-gh-release@v1 diff --git a/pyproject.toml b/pyproject.toml index 3cf29f6..52c2ae4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "geneweaver-api" -version = "0.4.0" +version = "0.4.0b0" description = "The Geneweaver API" authors = [ "Alexander Berger ",