We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c94b442 commit 00e6466Copy full SHA for 00e6466
.github/workflows/build.yml
@@ -329,10 +329,6 @@ jobs:
329
run: |
330
echo ${VERSION} > version.txt
331
shell: bash
332
- - name: Generate checksum
333
- run: |
334
- find . -name "mihomo*" -type f -not -path "*/\.*" | sort | xargs sha256sum > checksums.txt
335
- shell: bash
336
- name: Archive production artifacts
337
uses: actions/upload-artifact@v4
338
with:
@@ -357,6 +353,13 @@ jobs:
357
353
path: bin/
358
354
merge-multiple: true
359
355
356
+ - name: Calculate checksums
+ run: |
+ cd bin/
+ find . -type f -not -name "checksums.*" -not -name "version.txt" | sort | xargs sha256sum > checksums.txt
360
+ cat checksums.txt
361
+ shell: bash
362
+
363
- name: Delete current release assets
364
uses: 8Mi-Tech/delete-release-assets-action@main
365
0 commit comments