Skip to content

Commit

Permalink
typo in workflow chaining
Browse files Browse the repository at this point in the history
  • Loading branch information
a-quelle committed Jan 18, 2025
1 parent 3be6171 commit 5340f47
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/publish_emu_base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,10 @@ jobs:
uses: actions/checkout@v4
with:
ref: ${{ github.ref }}
- name: Set up Python
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/publish_emu_mps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@ name: Publish emu-mps

on:
workflow_run:
workflows: ["Publish emu-base"]
branches: ["aq/github_publish"]
workflows: [Publish emu-base]
types:
- completed
concurrency:
Expand All @@ -23,8 +22,10 @@ jobs:
uses: actions/checkout@v4
with:
ref: ${{ github.ref }}
- name: Set up Python
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
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.1"
__version__ = "1.2.2"
2 changes: 1 addition & 1 deletion emu_mps/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@
"SecondMomentOfEnergy",
]

__version__ = "1.2.1"
__version__ = "1.2.2"

0 comments on commit 5340f47

Please sign in to comment.