From b4d48c099987e1377b7c70a72dac5bc5bbb01daa Mon Sep 17 00:00:00 2001 From: bitterpanda Date: Wed, 3 Dec 2025 14:40:09 +0100 Subject: [PATCH] add alpine & linuxstatic to create-artifact.yml --- .github/workflows/create-artifact.yml | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/.github/workflows/create-artifact.yml b/.github/workflows/create-artifact.yml index ad43a9d..3c14426 100644 --- a/.github/workflows/create-artifact.yml +++ b/.github/workflows/create-artifact.yml @@ -49,7 +49,26 @@ jobs: runner: windows-11-arm target: node20-win-arm64 extension: ".exe" - + - os: alpine + arch: x64 + runner: ubuntu-latest + target: node20-alpine-x64 + extension: "" + - os: alpine + arch: arm64 + runner: ubuntu-24.04-arm + target: node20-alpine-arm64 + extension: "" + - os: linuxstatic + arch: x64 + runner: ubuntu-latest + target: node20-linuxstatic-x64 + extension: "" + - os: linuxstatic + arch: arm64 + runner: ubuntu-24.04-arm + target: node20-linuxstatic-arm64 + extension: "" steps: - name: Checkout code uses: actions/checkout@v3