diff --git a/.github/workflows/publish_emu_mps.yml b/.github/workflows/publish_emu_mps.yml index 5384ab0..07c0278 100644 --- a/.github/workflows/publish_emu_mps.yml +++ b/.github/workflows/publish_emu_mps.yml @@ -3,7 +3,7 @@ run-name: Publish emu-mps on: workflow_run: - workflows: [Publish emu-base] + workflows: [Publish emu-base, Lint and test] types: - completed concurrency: @@ -13,8 +13,9 @@ concurrency: jobs: publish_emu_mps: name: Publish emu-mps to PyPI - #if: startsWith(github.ref, 'refs/tags/v') - if: ${{ github.event.workflow_run.conclusion == 'success' }} + if: | + ${{ github.event.workflow_run.conclusion == 'success' }} +# && startsWith(github.ref, 'refs/tags/v') runs-on: ubuntu-latest permissions: # IMPORTANT: this permission is mandatory for trusted publishing diff --git a/emu_base/__init__.py b/emu_base/__init__.py index d76c6f1..5c8589b 100644 --- a/emu_base/__init__.py +++ b/emu_base/__init__.py @@ -44,4 +44,4 @@ "DEFAULT_MAX_KRYLOV_DIM", ] -__version__ = "1.2.5" +__version__ = "1.2.6"