Skip to content
Open
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/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
run: |
zip release.zip -r .

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: release
path: release.zip
Expand All @@ -72,7 +72,7 @@ jobs:
with:
node-version: 18

- uses: actions/download-artifact@v5
- uses: actions/download-artifact@v6
with:
name: release

Expand Down Expand Up @@ -119,7 +119,7 @@ jobs:
if: steps.changes.outputs.files_changed == 'true' || steps.changes.outputs.packages_changed
run: zip build.zip -r .

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
if: steps.changes.outputs.files_changed == 'true' || steps.changes.outputs.packages_changed
with:
name: build
Expand All @@ -139,7 +139,7 @@ jobs:
version: ${{ steps.asset_version.outputs.version }}

steps:
- uses: actions/download-artifact@v5
- uses: actions/download-artifact@v6
with:
name: build

Expand Down Expand Up @@ -174,7 +174,7 @@ jobs:
runs-on: [ubuntu-latest]

steps:
- uses: actions/download-artifact@v5
- uses: actions/download-artifact@v6
with:
name: build

Expand Down
Loading