diff --git a/.gitea/workflows/build_and_release.yml b/.gitea/workflows/build_and_release.yml index 74797ef..0d55960 100644 --- a/.gitea/workflows/build_and_release.yml +++ b/.gitea/workflows/build_and_release.yml @@ -29,17 +29,11 @@ jobs: # 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" + # this should start working with https://github.com/go-gitea/gitea/pull/24230 + # needs: [ check_for_changed_version ] + # if: needs.check_for_changed_version.outputs.version_changed == 'True' permissions: contents: write steps: diff --git a/pyproject.toml b/pyproject.toml index 105277e..bcd5c75 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "src" -version = "0.2.3" +version = "0.2.2" description = "" authors = ["Joe Kaufeld "]