Skip to content

Commit

Permalink
Update syntax (#461)
Browse files Browse the repository at this point in the history
  • Loading branch information
jhale committed Feb 21, 2022
1 parent 214de0a commit 8ec717b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- name: Checkout FFCx
uses: actions/checkout@v2
with:
ref: ${{ inputs.ffcx_ref }}
ref: ${{ github.event.inputs.ffcx_ref }}

- name: Upgrade pip and setuptools
run: python -m pip install setuptools pip --upgrade
Expand All @@ -68,14 +68,14 @@ jobs:
path: dist

- uses: pypa/gh-action-pypi-publish@v1.4.2
if: ${{ inputs.test_pypi_publish }}
if: ${{ github.event.inputs.test_pypi_publish }}
with:
user: __token__
password: ${{ secrets.PYPI_TOKEN }}
repository_url: https://pypi.org/legacy/

- uses: pypa/gh-action-pypi-publish@v1.4.2
if: ${{ inputs.pypi_publish }}
if: ${{ github.event.inputs.pypi_publish }}
with:
user: __token__
password: ${{ secrets.PYPI_TEST_TOKEN }}
Expand Down

0 comments on commit 8ec717b

Please sign in to comment.