Skip to content

Commit

Permalink
artifacts need names now
Browse files Browse the repository at this point in the history
  • Loading branch information
ajfriend committed Apr 13, 2024
1 parent 54ab7a5 commit 2643299
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ jobs:
- name: Upload artifacts to GitHub
uses: actions/[email protected]
with:
name: html
path: docs/_build/html

deploy-docs:
Expand All @@ -42,5 +43,5 @@ jobs:
steps:
- uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
github_token: ${{ secrets.GITHUB_TOKEN }} # do we need this escaping?
publish_dir: docs/_build/html
1 change: 1 addition & 0 deletions .github/workflows/coverage-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,5 @@ jobs:
- name: Upload artifacts to GitHub
uses: actions/[email protected]
with:
name: annotations
path: ./annotations
4 changes: 3 additions & 1 deletion .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ jobs:
- name: Upload artifacts to GitHub
uses: actions/[email protected]
with:
name: wheels
path: ./dist

make_cibw_v2_wheels:
Expand Down Expand Up @@ -135,6 +136,7 @@ jobs:
- name: Upload artifacts to GitHub
uses: actions/[email protected]
with:
name: wheels
path: wheelhouse/*.whl

upload_all:
Expand All @@ -145,7 +147,7 @@ jobs:
steps:
- uses: actions/download-artifact@v3
with:
name: artifact
name: wheels
path: dist

- uses: pypa/[email protected]
Expand Down

0 comments on commit 2643299

Please sign in to comment.