From 41603bc837209225af227043425ad7f1ae9775f3 Mon Sep 17 00:00:00 2001 From: David Braun <2096055+DBraun@users.noreply.github.com> Date: Wed, 8 Jan 2025 15:33:45 -0500 Subject: [PATCH] fix github action --- .github/workflows/all.yml | 6 ++++-- vita/version.py | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/all.yml b/.github/workflows/all.yml index 6e5cba7..a133210 100644 --- a/.github/workflows/all.yml +++ b/.github/workflows/all.yml @@ -5,6 +5,8 @@ on: branches: [ "main" ] pull_request: branches: [ "main" ] + release: + types: [published] jobs: build-ubuntu: @@ -201,8 +203,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: startsWith(github.ref, 'refs/tags/v') + 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 3b93d0b..27fdca4 100644 --- a/vita/version.py +++ b/vita/version.py @@ -1 +1 @@ -__version__ = "0.0.2" +__version__ = "0.0.3"