add docs artifact
All checks were successful
Test bankfind / Python ${{ matrix.python-version }} sample (3.8) (push) Successful in 19s
All checks were successful
Test bankfind / Python ${{ matrix.python-version }} sample (3.8) (push) Successful in 19s
This commit is contained in:
parent
4aee92547c
commit
2e2dd743d2
@ -32,14 +32,23 @@ jobs:
|
|||||||
flit build
|
flit build
|
||||||
find dist
|
find dist
|
||||||
- name: upload package as artifact
|
- name: upload package as artifact
|
||||||
|
# v4 doesn't work
|
||||||
|
# uses: actions/upload-artifact@v4
|
||||||
uses: actions/upload-artifact@v3
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: bankfind
|
name: bankfind
|
||||||
path: dist
|
path: dist
|
||||||
|
- name: Build docs with mkdocs
|
||||||
|
run: |
|
||||||
|
pip install mkdocs mkdocs-material mkdocs-material-extensions
|
||||||
|
cd docs
|
||||||
|
mkdocs build
|
||||||
|
find site
|
||||||
|
- name: upload docs as artifact
|
||||||
|
# v4 doesn't work
|
||||||
|
# uses: actions/upload-artifact@v4
|
||||||
|
uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: bankfind-docs
|
||||||
|
path: docs/site
|
||||||
|
|
||||||
# - name: Build docs with mkdocs
|
|
||||||
# run: |
|
|
||||||
# pip install mkdocs mkdocs-material mkdocs-material-extensions
|
|
||||||
# cd docs
|
|
||||||
# mkdocs build
|
|
||||||
# find site
|
|
Loading…
Reference in New Issue
Block a user