Skip to content

Commit

Permalink
Fix to config
Browse files Browse the repository at this point in the history
  • Loading branch information
bw27492 committed Dec 20, 2023
1 parent 47b4691 commit e905f42
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,15 +94,15 @@ jobs:
steps:
#Retrieve Bailo artifact
- name: Download all the dists
if: ${{needs.build.outputs.files-changed-output}} == 'true'
if: needs.build.outputs.files-changed-output == 'true'
uses: actions/download-artifact@v3
with:
name: python-package-distributions
path: dist/

# Publish artifact to TestPyPI
- name: Publish distribution to TestPyPI
if: ${{needs.build.outputs.files-changed-output}} == 'true'
if: needs.build.outputs.files-changed-output == 'true'
uses: pypa/gh-action-pypi-publish@release/v1
with:
repository-url: https://test.pypi.org/legacy/

0 comments on commit e905f42

Please sign in to comment.