Skip to content

Commit

Permalink
chore: fix PyPI package upload
Browse files Browse the repository at this point in the history
  • Loading branch information
jbms committed Mar 18, 2024
1 parent 811e2f5 commit 4319f8a
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -195,10 +195,6 @@ jobs:
with:
name: npm-package
path: npm-package
- uses: actions/download-artifact@v4
with:
name: client
path: dist/client
# - name: Publish to PyPI (test server)
# uses: pypa/gh-action-pypi-publish@54b39fb9371c0b3a6f9f14bb8a67394defc7a806 # 2020-09-25
# with:
Expand All @@ -216,6 +212,12 @@ jobs:
working-directory: npm-package
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
# Download dist/client after publishing to PyPI, because PyPI publish
# action fails if dist/client directory is present.
- uses: actions/download-artifact@v4
with:
name: client
path: dist/client
- name: Publish to Firebase hosting
uses: FirebaseExtended/action-hosting-deploy@v0
with:
Expand Down

0 comments on commit 4319f8a

Please sign in to comment.