Fix upload_pypi job in pypi workflow #589
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: dev-docs | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build River | |
uses: ./.github/actions/install-env | |
with: | |
# Use 3.12 for the docs env waiting for spaCy and srsly to support 3.13 | |
python-version: "3.12" | |
build-root: false | |
- name: Install extra Ubuntu dependencies | |
run: sudo apt-get install graphviz pandoc | |
- name: Install extra Python dependencies | |
run: | | |
poetry install --with docs | |
- name: Build docs | |
run: | | |
source $VENV | |
make doc | |
- name: Deploy docs | |
env: | |
GH_TOKEN: ${{ secrets.GitHubToken }} | |
run: | | |
source $VENV | |
git config user.name github-actions | |
git config user.email [email protected] | |
git config pull.rebase false | |
git add --all | |
git commit -m "Release dev docs" --allow-empty | |
git fetch | |
git checkout gh-pages | |
git pull | |
git checkout main | |
mike deploy dev --push --remote https://github.com/${{ github.repository }}.git |