Skip to content

Commit

Permalink
Use simple quote in github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
fcollonval committed Aug 1, 2020
1 parent d808d9b commit 9ee4ddd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
python -m pip install --upgrade pip
pip install setuptools wheel twine jupyterlab
- name: Build and publish NPM package
if: ${{ startsWith(github.ref, "jupyterlab_conda") }}
if: ${{ startsWith(github.ref, 'jupyterlab_conda') }}
run: |
cd labextension
jlpm
Expand All @@ -32,7 +32,7 @@ jobs:
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Publish Python package
if: ${{ !startsWith(github.ref, "jupyterlab_conda") }}
if: ${{ !startsWith(github.ref, 'jupyterlab_conda') }}
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
Expand Down

0 comments on commit 9ee4ddd

Please sign in to comment.