Skip to content

Commit c94b442

Browse files
committed
chore: add checksum generation for production artifacts
1 parent 8bc6f77 commit c94b442

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/build.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,10 @@ jobs:
329329
run: |
330330
echo ${VERSION} > version.txt
331331
shell: bash
332-
332+
- name: Generate checksum
333+
run: |
334+
find . -name "mihomo*" -type f -not -path "*/\.*" | sort | xargs sha256sum > checksums.txt
335+
shell: bash
333336
- name: Archive production artifacts
334337
uses: actions/upload-artifact@v4
335338
with:
@@ -340,6 +343,7 @@ jobs:
340343
mihomo*.rpm
341344
mihomo*.zip
342345
version.txt
346+
checksums.txt
343347
344348
Upload-Prerelease:
345349
permissions: write-all

0 commit comments

Comments
 (0)