Skip to content

Commit 00e6466

Browse files
committed
chore: update checksum generation step
1 parent c94b442 commit 00e6466

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/build.yml

+7-4
Original file line numberDiff line numberDiff line change
@@ -329,10 +329,6 @@ jobs:
329329
run: |
330330
echo ${VERSION} > version.txt
331331
shell: bash
332-
- name: Generate checksum
333-
run: |
334-
find . -name "mihomo*" -type f -not -path "*/\.*" | sort | xargs sha256sum > checksums.txt
335-
shell: bash
336332
- name: Archive production artifacts
337333
uses: actions/upload-artifact@v4
338334
with:
@@ -357,6 +353,13 @@ jobs:
357353
path: bin/
358354
merge-multiple: true
359355

356+
- name: Calculate checksums
357+
run: |
358+
cd bin/
359+
find . -type f -not -name "checksums.*" -not -name "version.txt" | sort | xargs sha256sum > checksums.txt
360+
cat checksums.txt
361+
shell: bash
362+
360363
- name: Delete current release assets
361364
uses: 8Mi-Tech/delete-release-assets-action@main
362365
with:

0 commit comments

Comments
 (0)