From 98113348348537a526f2d72f61b5cef9a1361227 Mon Sep 17 00:00:00 2001 From: David Braun <2096055+DBraun@users.noreply.github.com> Date: Wed, 8 Jan 2025 15:21:34 -0500 Subject: [PATCH] fix github action --- .github/workflows/all.yml | 3 ++- vita/version.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/all.yml b/.github/workflows/all.yml index b1e85d1..6e5cba7 100644 --- a/.github/workflows/all.yml +++ b/.github/workflows/all.yml @@ -201,7 +201,8 @@ jobs: needs: [build-windows, build-ubuntu, build-macos] runs-on: ubuntu-latest name: "Upload wheels to PyPI" - if: github.event_name == 'release' && github.event.action == 'published' + # if: github.event_name == 'release' && github.event.action == 'published' + if: startsWith(github.ref, 'refs/tags/v') steps: - uses: actions/download-artifact@v4 with: diff --git a/vita/version.py b/vita/version.py index f102a9c..3b93d0b 100644 --- a/vita/version.py +++ b/vita/version.py @@ -1 +1 @@ -__version__ = "0.0.1" +__version__ = "0.0.2"