Merge pull request #23 from pngwn/10-admin #21
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish pypi package | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
cache: "pip" | |
- name: Install pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
cache: pnpm | |
cache-dependency-path: frontend/pnpm-lock.yaml | |
- name: Install gradio | |
run: python -m pip install gradio build twine | |
- run: gradio cc install --npm-install="pnpm i" | |
- run: gradio cc docs | |
- run: gradio cc build --no-generate-docs | |
- name: Publish package to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
password: ${{ secrets.PYPI_API_TOKEN }} | |
- run: gradio cc publish --no-upload-pypi --upload-demo --no-upload-source --hf-token=${{ secrets.HF_TOKEN }} |