Skip to content
Merged
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
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
mkdir -p out
cp "target/${{ matrix.target }}/release/${{ matrix.artifact }}" "out/${{ matrix.artifact }}"

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: native-${{ matrix.rid }}
path: out/${{ matrix.artifact }}
Expand Down Expand Up @@ -134,7 +134,7 @@ jobs:
SkipStageHostRuntime: "true"
run: dotnet pack csharp/GBPStack/GBPStack.csproj -c Release -o nupkg

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: nupkg
path: nupkg/*
Expand Down Expand Up @@ -223,7 +223,7 @@ jobs:
GBP_STACK_TARGET_PLATFORM: ${{ matrix.plat }}
run: python build_wheel.py

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: wheel-${{ matrix.rid }}
path: python/dist/*.whl
Expand All @@ -239,7 +239,7 @@ jobs:
- run: python -m pip install --upgrade pip build
- run: python -m build --sdist
working-directory: python
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: sdist
path: python/dist/*.tar.gz
Expand Down Expand Up @@ -379,7 +379,7 @@ jobs:
npm run build
npm pack

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: npm-tarball
path: js/*.tgz
Expand Down
Loading