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
4 changes: 2 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
version: ${{ vars.NU_SHELL_VERSION || '*' }}
- run: nu -c "use nurfile *; nur docs build"
- name: Save docs build as artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
path: docs/site
name: supplemental-docs
Expand All @@ -56,7 +56,7 @@ jobs:
key: cargo-docs-${{ hashFiles('crates/*/src/**', 'crates/**/Cargo.toml') }}
- run: nu -c "use nurfile *; nur docs rs"
- name: save docs as artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: api-docs
path: target/doc
16 changes: 8 additions & 8 deletions .github/workflows/node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,14 +105,14 @@ jobs:
run: ${{ matrix.settings.build }}
shell: bash
- name: Upload native module as artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: bindings-${{ matrix.settings.target }}
path: ${{ env.ARTIFACT_PATH }}
if-no-files-found: error
- name: Upload generated index.* as artifact
if: matrix.settings.target == 'armv7-unknown-linux-gnueabihf'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: generated-index
path: bindings/node/index.*
Expand Down Expand Up @@ -159,7 +159,7 @@ jobs:
rm -rf target
rm -rf .yarn/cache
- name: Upload artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: bindings-freebsd
path: ${{ env.ARTIFACT_PATH }}
Expand All @@ -180,19 +180,19 @@ jobs:
- name: Install dependencies
run: yarn install
- name: Download macOS x64 artifact
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: bindings-x86_64-apple-darwin
path: bindings/node
- name: Download macOS arm64 artifact
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: bindings-aarch64-apple-darwin
path: bindings/node
- name: Combine binaries
run: yarn universal
- name: Upload artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: bindings-universal-apple-darwin
path: ${{ env.ARTIFACT_PATH }}
Expand All @@ -217,12 +217,12 @@ jobs:
- name: Install dependencies
run: yarn install
- name: Download native artifacts
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
pattern: bindings-*
path: bindings/node/artifacts
- name: Download generated index artifact
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: generated-index
path: bindings/node
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
# sccache: 'true'
manylinux: auto
- name: Upload wheels
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: wheels-linux-${{ matrix.platform.target }}
path: dist
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:
sccache: 'true'
manylinux: musllinux_1_2
- name: Upload wheels
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: wheels-musllinux-${{ matrix.platform.target }}
path: dist
Expand All @@ -116,7 +116,7 @@ jobs:
args: --release --out dist --find-interpreter
sccache: 'true'
- name: Upload wheels
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: wheels-windows-${{ matrix.platform.target }}
path: dist
Expand All @@ -142,7 +142,7 @@ jobs:
args: --release --out dist --find-interpreter
sccache: 'true'
- name: Upload wheels
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: wheels-macos-${{ matrix.platform.target }}
path: dist
Expand All @@ -160,7 +160,7 @@ jobs:
command: sdist
args: --out dist
- name: Upload sdist
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: wheels-sdist
path: dist
Expand All @@ -173,7 +173,7 @@ jobs:
permissions:
id-token: write
steps:
- uses: actions/download-artifact@v5
- uses: actions/download-artifact@v6
with:
pattern: wheels-*
path: dist
Expand Down
Loading