File tree Expand file tree Collapse file tree 14 files changed +166
-64
lines changed
linux-arm64-alpine-node-25 Expand file tree Collapse file tree 14 files changed +166
-64
lines changed Original file line number Diff line number Diff line change 1+ FROM node:25-alpine
2+
3+ RUN apk add --no-cache python3 make gcc g++ linux-headers
4+
5+ COPY entrypoint.sh /entrypoint.sh
6+ ENTRYPOINT ["/entrypoint.sh" ]
Original file line number Diff line number Diff line change 1+ name : ' Create a binary artifact for Node 25 on Alpine Linux'
2+ description : ' Create a binary artifact for Node 25 on Alpine Linux using musl'
3+ runs :
4+ using : ' docker'
5+ image : ' Dockerfile'
6+ args :
7+ - ${{inputs.node-version}}
Original file line number Diff line number Diff line change 1+ #! /bin/sh
2+
3+ set -e
4+
5+ export USERNAME=` whoami`
6+ export DEVELOPMENT_SKIP_GETTING_ASSET=true
7+ npm i
8+ npm run build --if-present
9+ npm test
10+ npm run save-to-github
Original file line number Diff line number Diff line change 1+ FROM --platform=linux/arm64 node:25-alpine
2+
3+ RUN apk add --no-cache python3 make gcc g++ linux-headers
4+
5+ COPY entrypoint.sh /entrypoint.sh
6+ ENTRYPOINT ["/entrypoint.sh" ]
Original file line number Diff line number Diff line change 1+ name : ' Create a binary artifact for Node 25 on Alpine Linux'
2+ description : ' Create a binary artifact for Node 25 on Alpine Linux using musl'
3+ runs :
4+ using : ' docker'
5+ image : ' Dockerfile'
6+ args :
7+ - ${{inputs.node-version}}
Original file line number Diff line number Diff line change 1+ #! /bin/sh
2+
3+ set -e
4+
5+ export USERNAME=` whoami`
6+ export DEVELOPMENT_SKIP_GETTING_ASSET=true
7+ npm i
8+ npm run build --if-present
9+ npm test
10+ npm run save-to-github
Original file line number Diff line number Diff line change 1+ FROM --platform=linux/arm64 node:25-trixie
2+
3+ RUN apt install python3 make gcc g++
4+
5+ COPY entrypoint.sh /entrypoint.sh
6+ ENTRYPOINT ["/entrypoint.sh" ]
Original file line number Diff line number Diff line change 1+ name : ' Create a binary artifact for Node 25 on Debian Trixie Linux on ARM64'
2+ description : ' Create a binary artifact for Node 25 on Debian Trixie Linux on ARM64'
3+ inputs :
4+ node-version :
5+ description : ' Node.js version'
6+ required : false
7+ default : ' 25'
8+ runs :
9+ using : ' docker'
10+ image : ' Dockerfile'
11+ args :
12+ - ${{inputs.node-version}}
Original file line number Diff line number Diff line change 1+ #! /bin/sh
2+
3+ set -e
4+
5+ export USERNAME=` whoami`
6+ export DEVELOPMENT_SKIP_GETTING_ASSET=true
7+ npm i
8+ npm run build --if-present
9+ npm test
10+ npm run save-to-github
Original file line number Diff line number Diff line change 1+ FROM node:25-trixie
2+
3+ RUN apt install python3 make gcc g++
4+
5+ COPY entrypoint.sh /entrypoint.sh
6+ ENTRYPOINT ["/entrypoint.sh" ]
You can’t perform that action at this time.
0 commit comments