add docs artifact
All checks were successful
Test bankfind / Python ${{ matrix.python-version }} sample (3.8) (push) Successful in 19s

This commit is contained in:
Austin Godber 2024-07-24 07:49:22 -07:00
parent 4aee92547c
commit 2e2dd743d2

View File

@ -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