Skip to content

Commit

Permalink
depend on Lint and test
Browse files Browse the repository at this point in the history
  • Loading branch information
a-quelle committed Jan 18, 2025
1 parent 6712d15 commit 27a7edc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/publish_emu_mps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion emu_base/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,4 @@
"DEFAULT_MAX_KRYLOV_DIM",
]

__version__ = "1.2.5"
__version__ = "1.2.6"

0 comments on commit 27a7edc

Please sign in to comment.