Skip to content

Commit

Permalink
Update build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
dragonstyle authored Feb 19, 2024
1 parent 30dcd1e commit 882c05d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,13 +79,13 @@ jobs:
- name: Publish package distributions to TestPyPI
uses: pypa/gh-action-pypi-publish@release/v1
if: ${{ publish-release && ! inputs.production-release }}
if: ${{ inputs.publish-release && ! inputs.production-release }}
with:
repository-url: https://test.pypi.org/legacy/

- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
if: ${{ publish-release && inputs.production-release }}
if: ${{ inputs.publish-release && inputs.production-release }}

- name: Build the NPM Front End
run: |
Expand All @@ -95,4 +95,4 @@ jobs:
- uses: JS-DevTools/npm-publish@v3
with:
token: ${{ secrets.NPM_TOKEN }}
if: ${{ publish-release && inputs.production-release }}
if: ${{ inputs.publish-release && inputs.production-release }}

0 comments on commit 882c05d

Please sign in to comment.