From 05d2f5829d14aaea40ce2750a99c2bd18d66f5ef Mon Sep 17 00:00:00 2001 From: Joe Kaufeld Date: Wed, 26 Apr 2023 10:26:27 -0400 Subject: [PATCH] :construction_worker: shenanigans with versions --- .gitea/workflows/build_and_release.yml | 11 +++++++++-- pyproject.toml | 2 +- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/build_and_release.yml b/.gitea/workflows/build_and_release.yml index d22d3ca..74797ef 100644 --- a/.gitea/workflows/build_and_release.yml +++ b/.gitea/workflows/build_and_release.yml @@ -28,11 +28,18 @@ jobs: echo "::notice title=GOTIME::$GOTIME" # Set the output named "version_changed" echo "version_changed=$GOTIME" >> $GITHUB_OUTPUT - + + checkvar: + runs-on: ubuntu-latest + needs: [ check_for_changed_version ] + steps: + - name: Echo response from first check + run: echo ${{needs.check_for_changed_version.outputs.version_changed}} + build: runs-on: ubuntu-latest needs: [ check_for_changed_version ] - if: needs.check_for_changed_version.outputs.version_changed == 'True' + if: needs.check_for_changed_version.outputs.version_changed == "True" permissions: contents: write steps: diff --git a/pyproject.toml b/pyproject.toml index bcd5c75..105277e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "src" -version = "0.2.2" +version = "0.2.3" description = "" authors = ["Joe Kaufeld "]