File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1919 arch : aarch64
2020 steps :
2121 - name : checkout
22- uses : actions/checkout@v6
22+ uses : actions/checkout@v7
2323
2424 - name : build-image
2525 run : |
5454 export PATH=$PWD/bin:$PATH
5555 npm install @bjorn3/browser_wasi_shim
5656 popd
57+
58+ release :
59+ if : github.event_name == 'push'
60+ needs : build
61+ runs-on : ubuntu-slim
62+ permissions :
63+ contents : write
64+ steps :
65+ - name : download-artifacts
66+ uses : actions/download-artifact@v8
67+ with :
68+ merge-multiple : true
69+
70+ - name : publish-release
71+ env :
72+ GH_TOKEN : ${{ github.token }}
73+ GH_REPO : ${{ github.repository }}
74+ run : |
75+ gh release create ${{ github.ref_name }} node-v*.tar.xz \
76+ --title ${{ github.ref_name }} \
77+ --notes-file /dev/null \
78+ --latest \
79+ --verify-tag
Original file line number Diff line number Diff line change 22
33set -eu
44
5- node_ver=v26.3.0
5+ node_ver=v26.3.1
66
77apk add \
88 clang \
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ trap 'rm -rf "$workdir"' EXIT
77
88cd " $workdir "
99
10- git clone --depth=1 --branch=v26.3.0 https://github.com/nodejs/node.git .
10+ git clone --depth=1 --branch=v26.3.1 https://github.com/nodejs/node.git .
1111
1212git apply " $OLDPWD /lto.diff"
1313
You can’t perform that action at this time.
0 commit comments