Skip to content

Commit 7308c3e

Browse files
committed
Fix workflow push pi (forgot $ before {{ )
1 parent 70975c0 commit 7308c3e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/push_pypi.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ jobs:
3434
fi
3535
3636
- name: Build package
37-
if: {{ steps.check_version.outputs.version_changed == '1' }}
37+
if: ${{ steps.check_version.outputs.version_changed == '1' }}
3838
run: |
3939
uv build
4040
4141
- name: Publish to PyPI
42-
if: {{ steps.check_version.outputs.version_changed == '1' }}
42+
if: ${{ steps.check_version.outputs.version_changed == '1' }}
4343
run: |
4444
uv publish --token ${{ secrets.PYPI_TOKEN }}

0 commit comments

Comments
 (0)