-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #100 from petereon/fix-doc-publishing
Fix doc build
- Loading branch information
Showing
4 changed files
with
13 additions
and
12 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,16 +42,16 @@ jobs: | |
export PYTHONPATH=$(pwd) | ||
poe test | ||
# - name: Install documentation dependencies | ||
# run: pip install -r docs/requirements.txt | ||
# - name: Build documentation | ||
# run: cd docs && novella | ||
# - name: Publish documentation | ||
# uses: JamesIves/[email protected] | ||
# with: | ||
# branch: gh-pages | ||
# folder: docs/_site | ||
# ssh-key: ${{ secrets.DEPLOY_KEY }} | ||
- name: Install documentation dependencies | ||
run: pip install -r docs/requirements.txt | ||
- name: Build documentation | ||
run: cd docs && novella | ||
- name: Publish documentation | ||
uses: JamesIves/[email protected] | ||
with: | ||
branch: gh-pages | ||
folder: docs/_site | ||
ssh-key: ${{ secrets.DEPLOY_KEY }} | ||
|
||
- name: Publish package | ||
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29 | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
_site |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = 'beaupy' | ||
version = '3.8.3' | ||
version = '3.8.3.post1' | ||
description = 'A library of elements for interactive TUIs in Python' | ||
authors = ['Peter Vyboch <[email protected]>'] | ||
license = 'MIT' | ||
|