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
12 changes: 6 additions & 6 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
zip -r raven-linux.zip raven

- name: Archive Product
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: raven-linux.zip
path: build/raven-linux.zip
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
zip -r raven-mac.zip raven

- name: Archive Product
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: raven-mac.zip
path: build/raven-mac.zip
Expand Down Expand Up @@ -112,7 +112,7 @@ jobs:
zip -r raven-web.zip raven.html raven.wasm raven.js raven.worker.js

- name: Archive Product
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: raven-web.zip
path: build-web/raven-web.zip
Expand Down Expand Up @@ -144,7 +144,7 @@ jobs:
file ./Release/raven.exe

- name: Archive Product
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: raven-windows-x64.zip
path: |
Expand Down Expand Up @@ -177,7 +177,7 @@ jobs:
run: |
uv build --wheel
- name: Archive Python wheel
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: wheel-${{ matrix.os }}
path: dist/*.whl
Expand All @@ -202,7 +202,7 @@ jobs:
run: |
uv build --sdist
- name: Archive Python sdist
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: sdist
path: dist/*.tar.gz
Loading