Commit 0deacb1 1 parent 1ab0b1d commit 0deacb1 Copy full SHA for 0deacb1
File tree 1 file changed +9
-7
lines changed
1 file changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -34,16 +34,18 @@ jobs:
34
34
filename : ' github-release/skia-with-deps-${{ github.ref_name }}.tar.gz'
35
35
exclusions : ' github-release .git'
36
36
37
- - name : Calculate checksum
37
+ - name : Generate checksums for this release
38
38
run : |
39
- echo "MD5 Checksums:" >> CHECKSUMS
40
- md5sum github-release/* >> CHECKSUMS
41
- echo >> CHECKSUMS
42
- echo "SHA256 Checksums:" >> CHECKSUMS
43
- sha256sum github-release/* >> CHECKSUMS
39
+ echo "MD5 Checksums:" >> RELEASE_BODY
40
+ md5sum github-release/* >> RELEASE_BODY
41
+ echo >> RELEASE_BODY
42
+ echo "SHA256 Checksums:" >> RELEASE_BODY
43
+ sha256sum github-release/* >> RELEASE_BODY
44
+ echo >> RELEASE_BODY
45
+ echo "Commit-id-${{ github.sha }}" >> RELEASE_BODY
44
46
45
47
- name : Publish
46
48
uses : softprops/action-gh-release@v1
47
49
with :
48
50
files : github-release/skia-with-deps-${{ github.ref_name }}.tar.gz
49
- body_path : CHECKSUMS
51
+ body_path : RELEASE_BODY
You can’t perform that action at this time.
0 commit comments