Skip to content

Commit

Permalink
ci: Add artifacts upload
Browse files Browse the repository at this point in the history
  • Loading branch information
mhthies committed Apr 1, 2024
1 parent 02d861d commit 714f52d
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,12 @@ jobs:
run: |
cd docs
sphinx-build -M html . _build
- name: Archive built package as artifact
uses: actions/upload-artifact@v4
with:
name: docs
path: |
docs/_build/html
package:
runs-on: ubuntu-latest
Expand All @@ -125,3 +131,9 @@ jobs:
- name: Create source and wheel dist
run: |
python -m build
- name: Archive built package as artifact
uses: actions/upload-artifact@v4
with:
name: dist
path: |
dist

0 comments on commit 714f52d

Please sign in to comment.