Skip to content

Commit 4da1c44

Browse files
committed
v26.3.1
1 parent b80e479 commit 4da1c44

3 files changed

Lines changed: 26 additions & 3 deletions

File tree

.github/workflows/build.yml

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
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: |
@@ -54,3 +54,26 @@ jobs:
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

build-alpine.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
set -eu
44

5-
node_ver=v26.3.0
5+
node_ver=v26.3.1
66

77
apk add \
88
clang \

utils/update-diff.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ trap 'rm -rf "$workdir"' EXIT
77

88
cd "$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

1212
git apply "$OLDPWD/lto.diff"
1313

0 commit comments

Comments
 (0)