Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
packages: ${{ steps.filter.outputs.changes }}
steps:
- uses: actions/checkout@v6
- uses: dorny/paths-filter@v3
- uses: dorny/paths-filter@v4
id: filter
with:
filters: |
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
environments: docs-${{ matrix.package }}
- name: Build docs
run: pixi run docs-${{ matrix.package }}
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
id: artifact-upload-step
with:
name: docs-${{ matrix.package }}
Expand All @@ -114,7 +114,7 @@ jobs:
report:
name: Report Job Status
needs: [changes, formatting, test, docs]
if: always()
if: always() && ( github.ref != 'refs/heads/main' ) # This job is for branch protection rule so it doesn't have to run on main branch.
runs-on: ubuntu-24.04
steps:
- name: Report Job Success
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
with:
branch: gh-pages
folder: gh-pages-site
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: docs-${{ inputs.package }}
path: packages/${{ inputs.package }}/html
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ jobs:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: "3.11"
- name: Copy LICENSE into package
run: cp LICENSE packages/${{ needs.determine-package.outputs.package }}/LICENSE
- name: Build package
run: pip install build && python -m build packages/${{ needs.determine-package.outputs.package }}
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: dist
path: packages/${{ needs.determine-package.outputs.package }}/dist/
Expand All @@ -49,7 +49,7 @@ jobs:
permissions:
id-token: write
steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v8
with:
name: dist
path: dist/
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
with:
branch: gh-pages
folder: gh-pages-site
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: docs_html
path: packages/${{ needs.determine-package.outputs.package }}/html
Expand All @@ -100,7 +100,7 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v8
with:
name: docs_html
path: docs_html
Expand Down
Loading