Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
airkei committed Jan 23, 2025
1 parent c4985f6 commit 3e99e6b
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,10 +110,22 @@ jobs:
runs-on: ubuntu-latest
needs: [build_python_packages, build_squashfs_image_amd64, build_squashfs_image_arm64]
steps:
- name: download artifacts
- name: download python packages artifact
uses: actions/download-artifact@v4
with:
name: artifacts-python-packages, artifacts-squashfs_amd64, artifacts-squashfs_arm64
name: artifacts-python-packages
path: dist

- name: download squashfs amd64 artifact
uses: actions/download-artifact@v4
with:
name: artifacts-squashfs_amd64
path: dist

- name: download squashfs arm64 artifact
uses: actions/download-artifact@v4
with:
name: artifacts-squashfs_arm64
path: dist

- name: calculate checksum
Expand Down

0 comments on commit 3e99e6b

Please sign in to comment.