Skip to content
Closed
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
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
python -m build
- name: Generate checksums
run: python3 scripts/write_sha256s.py engine/dist/SHA256SUMS engine/dist/*
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: zero-engine-python
path: engine/dist/*
Expand All @@ -49,7 +49,7 @@ jobs:
mkdir -p dist
cp cli/target/release-small/zero dist/${{ matrix.artifact }}
python3 scripts/write_sha256s.py dist/SHA256SUMS dist/${{ matrix.artifact }}
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: ${{ matrix.artifact }}
path: dist/*
Expand All @@ -69,7 +69,7 @@ jobs:
mkdir -p dist
docker save zero-public:${{ github.ref_name }} -o dist/zero-paper-image.tar
python3 scripts/write_sha256s.py dist/SHA256SUMS dist/zero-paper-image.tar
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: zero-paper-image
path: dist/*
Expand Down
Loading