71
71
tar -czf $TARBALL binaryen-$VERSION
72
72
# on Windows, MSYS2 will strip the carriage return from CMake output
73
73
cmake -E sha256sum $TARBALL > $SHASUM
74
- echo "::set-output name=tarball:: $TARBALL"
75
- echo "::set-output name=shasum:: $SHASUM"
74
+ echo "TARBALL= $TARBALL" >> $GITHUB_OUTPUT
75
+ echo "SHASUM= $SHASUM" >> $GITHUB_OUTPUT
76
76
77
77
- name : archive-arm64
78
78
id : archive-arm64
@@ -87,19 +87,19 @@ jobs:
87
87
tar -czf $TARBALL binaryen-$VERSION
88
88
# on Windows, MSYS2 will strip the carriage return from CMake output
89
89
cmake -E sha256sum $TARBALL > $SHASUM
90
- echo "::set-output name=tarball:: $TARBALL"
91
- echo "::set-output name=shasum:: $SHASUM"
90
+ echo "TARBALL= $TARBALL" >> $GITHUB_OUTPUT
91
+ echo "SHASUM= $SHASUM" >> $GITHUB_OUTPUT
92
92
if : matrix.os == 'macos-latest'
93
93
94
94
- name : upload tarball
95
95
uses : softprops/action-gh-release@v1
96
96
with :
97
97
draft : true
98
98
files : |
99
- ${{ steps.archive.outputs.tarball }}
100
- ${{ steps.archive.outputs.shasum }}
101
- ${{ steps.archive-arm64.outputs.tarball }}
102
- ${{ steps.archive-arm64.outputs.shasum }}
99
+ ${{ steps.archive.outputs.TARBALL }}
100
+ ${{ steps.archive.outputs.SHASUM }}
101
+ ${{ steps.archive-arm64.outputs.TARBALL }}
102
+ ${{ steps.archive-arm64.outputs.SHASUM }}
103
103
104
104
# Build with gcc 6.3 and run tests on Alpine Linux (inside chroot).
105
105
# Note: Alpine uses musl libc.
@@ -161,16 +161,16 @@ jobs:
161
161
mv install binaryen-$VERSION
162
162
tar -czf $TARBALL binaryen-$VERSION
163
163
cmake -E sha256sum $TARBALL > $SHASUM
164
- echo "::set-output name=tarball:: $TARBALL"
165
- echo "::set-output name=shasum:: $SHASUM"
164
+ echo "TARBALL= $TARBALL" >> $GITHUB_OUTPUT
165
+ echo "SHASUM= $SHASUM" >> $GITHUB_OUTPUT
166
166
167
167
- name : upload tarball
168
168
uses : softprops/action-gh-release@v1
169
169
with :
170
170
draft : true
171
171
files : |
172
- ${{ steps.archive.outputs.tarball }}
173
- ${{ steps.archive.outputs.shasum }}
172
+ ${{ steps.archive.outputs.TARBALL }}
173
+ ${{ steps.archive.outputs.SHASUM }}
174
174
175
175
# Build using Emscripten to JavaScript+WebAssembly.
176
176
build-node :
@@ -227,13 +227,13 @@ jobs:
227
227
cp out/bin/wasm-opt* binaryen-$VERSION/
228
228
tar -czf $TARBALL binaryen-$VERSION
229
229
cmake -E sha256sum $TARBALL > $SHASUM
230
- echo "::set-output name=tarball:: $TARBALL"
231
- echo "::set-output name=shasum:: $SHASUM"
230
+ echo "TARBALL= $TARBALL" >> $GITHUB_OUTPUT
231
+ echo "SHASUM= $SHASUM" >> $GITHUB_OUTPUT
232
232
233
233
- name : upload tarball
234
234
uses : softprops/action-gh-release@v1
235
235
with :
236
236
draft : true
237
237
files : |
238
- ${{ steps.archive.outputs.tarball }}
239
- ${{ steps.archive.outputs.shasum }}
238
+ ${{ steps.archive.outputs.TARBALL }}
239
+ ${{ steps.archive.outputs.SHASUM }}
0 commit comments