This repository was archived by the owner on Sep 17, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +28
-2
lines changed Expand file tree Collapse file tree 2 files changed +28
-2
lines changed Original file line number Diff line number Diff line change @@ -140,11 +140,17 @@ jobs:
140
140
cp target/${{ matrix.triple.target }}/release/monorepo builds/typescript-tools-${{ matrix.triple.target }}/
141
141
tar -C builds -czvf dist/typescript-tools-${{ matrix.triple.target }}.tar.gz typescript-tools-${{ matrix.triple.target }}
142
142
143
- - name : Upload release artifact
143
+ - name : Create checksum
144
+ run : shasum --algorithm 256 --binary typescript-tools-${{ matrix.triple.target }}.tar.gz > typescript-tools-${{ matrix.triple.target }}-SHASUM256.txt
145
+ working-directory : ./dist
146
+
147
+ - name : Upload release artifacts
144
148
uses : actions/upload-artifact@v3
145
149
with :
146
150
name : typescript-tools-${{ matrix.triple.target }}.tar.gz
147
- path : dist/typescript-tools-${{ matrix.triple.target }}.tar.gz
151
+ path : |
152
+ dist/typescript-tools-${{ matrix.triple.target }}.tar.gz
153
+ dist/typescript-tools-${{ matrix.triple.target }}-SHASUM256.txt
148
154
if-no-files-found : error
149
155
retention-days : 1
150
156
Original file line number Diff line number Diff line change 39
39
"path" : " dist/typescript-tools-x86_64-unknown-linux-musl.tar.gz" ,
40
40
"label" : " x86_64-unknown-linux-musl"
41
41
},
42
+ {
43
+ "path" : " dist/typescript-tools-x86_64-unknown-linux-musl-SHASUM256.txt" ,
44
+ "label" : " x86_64-unknown-linux-musl-SHASUM256"
45
+ },
42
46
{
43
47
"path" : " dist/typescript-tools-i686-unknown-linux-musl.tar.gz" ,
44
48
"label" : " i686-unknown-linux-musl"
45
49
},
50
+ {
51
+ "path" : " dist/typescript-tools-i686-unknown-linux-musl-SHASUM256.txt" ,
52
+ "label" : " i686-unknown-linux-musl-SHASUM256"
53
+ },
46
54
{
47
55
"path" : " dist/typescript-tools-x86_64-apple-darwin.tar.gz" ,
48
56
"label" : " x86_64-apple-darwin"
49
57
},
58
+ {
59
+ "path" : " dist/typescript-tools-x86_64-apple-darwin-SHASUM256.txt" ,
60
+ "label" : " x86_64-apple-darwin-SHASUM256"
61
+ },
50
62
{
51
63
"path" : " dist/typescript-tools-aarch64-unknown-linux-musl.tar.gz" ,
52
64
"label" : " aarch64-unknown-linux-musl"
53
65
},
66
+ {
67
+ "path" : " dist/typescript-tools-aarch64-unknown-linux-musl-SHASUM256.txt" ,
68
+ "label" : " aarch64-unknown-linux-musl-SHASUM256"
69
+ },
54
70
{
55
71
"path" : " dist/typescript-tools-aarch64-apple-darwin.tar.gz" ,
56
72
"label" : " aarch64-apple-darwin"
73
+ },
74
+ {
75
+ "path" : " dist/typescript-tools-aarch64-apple-darwin-SHASUM256.txt" ,
76
+ "label" : " aarch64-apple-darwin-SHASUM256"
57
77
}
58
78
]
59
79
}
You can’t perform that action at this time.
0 commit comments