Skip to content
Open
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
12 changes: 6 additions & 6 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,13 +77,13 @@ jobs:
run: python -m twine check --strict dist/*

- name: Save tarball to sdist
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: sdist_tar_gz_${{ github.ref_name }}
path: dist/*.tar.gz

- name: Save tarball to pypi_dist
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: pypi_dist_${{ github.ref_name }}
path: dist/*.tar.gz
Expand Down Expand Up @@ -193,13 +193,13 @@ jobs:
run: python -m twine check --strict dist/*

- name: Save wheel to bdist
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: bdist_whl_${{ matrix.os }}_${{ github.ref_name }}
path: dist/*.whl

- name: Save wheel to pypi_dist
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: pypi_dist_${{ runner.os }}_${{ runner.arch }}_${{ github.ref_name }}
path: dist/*.whl
Expand Down Expand Up @@ -286,13 +286,13 @@ jobs:
-exec cph transmute {} .conda --out-folder ${output_dir} \;

- name: Save build to conda_bld
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: conda_bld_${{ matrix.os }}_${{ github.ref_name }}
path: dist/*

- name: Save build to conda_dist
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: conda_dist_${{ runner.os }}_${{ runner.arch }}_${{ github.ref_name }}
path: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/cd_cuda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,13 +81,13 @@ jobs:
run: python -m twine check --strict dist/*

- name: Save wheel to bdist
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: bdist_whl_${{ matrix.os }}_${{ github.ref_name }}_cuda
path: dist/*.whl

- name: Save wheel to pypi_dist
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: pypi_dist_${{ runner.os }}_${{ runner.arch }}_${{ github.ref_name }}_cuda
path: dist/*.whl
Expand Down Expand Up @@ -160,13 +160,13 @@ jobs:
-exec cph transmute {} .conda --out-folder ${output_dir} \;

- name: Save build to conda_bld
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: conda_bld_${{ matrix.os }}_${{ github.ref_name }}_cuda
path: dist/*

- name: Save build to conda_dist
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: conda_dist_${{ runner.os }}_${{ runner.arch }}_${{ github.ref_name }}_cuda
path: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/cd_cuda_xp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,13 +125,13 @@ jobs:
run: python -m twine check --strict dist/*

- name: Save wheel to bdist
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: bdist_whl_${{ matrix.os }}_${{ env.TARGET_ARCH }}_${{ github.ref_name }}_cuda
path: dist/*.whl

- name: Save wheel to pypi_dist
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: pypi_dist_${{ runner.os }}_${{ env.TARGET_ARCH }}_${{ github.ref_name }}_cuda
path: dist/*.whl
Expand Down Expand Up @@ -212,13 +212,13 @@ jobs:
-exec cph transmute {} .conda --out-folder ${output_dir} \;

- name: Save build to conda_bld
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: conda_bld_${{ matrix.os }}_${{ github.ref_name }}_cuda
path: dist/*

- name: Save build to conda_dist
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: conda_dist_${{ runner.os }}_${{ runner.arch }}_${{ github.ref_name }}_cuda
path: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/cd_xp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -200,13 +200,13 @@ jobs:
run: python -m twine check --strict dist/*

- name: Save wheel to bdist
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: bdist_whl_${{ matrix.os }}_${{ github.ref_name }}
path: dist/*.whl

- name: Save wheel to pypi_dist
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: pypi_dist_${{ runner.os }}_${{ env.TARGET_ARCH }}_${{ github.ref_name }}
path: dist/*.whl
Expand Down Expand Up @@ -307,13 +307,13 @@ jobs:
-exec cph transmute {} .conda --out-folder ${output_dir} \;

- name: Save build to conda_bld
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: conda_bld_${{ matrix.os }}_${{ github.ref_name }}
path: dist/*

- name: Save build to conda_dist
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: conda_dist_${{ runner.os }}_${{ env.TARGET_ARCH }}_${{ github.ref_name }}
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publication.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
paper-path: publication/joss/paper.md

- name: Upload draft PDF
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: paper
path: publication/joss/paper.pdf
Loading