From 49dd32b8bdfa9b12699ac47cc5dcb43c40980367 Mon Sep 17 00:00:00 2001 From: Satakun Utama Date: Sat, 16 Aug 2025 23:27:12 +0700 Subject: [PATCH] Manually downloading Neutralino.js binaries --- .gitea/workflows/build.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index bc3c041..99ee6bb 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -16,7 +16,7 @@ jobs: - name: Installs required programs run: | apk upgrade - apk add git nodejs-current + apk add git nodejs-current unzip corepack enable - name: Check out the repository code uses: actions/checkout@v4 @@ -29,7 +29,8 @@ jobs: - name: Package application run: | cd ${{ github.workspace }} - pnpx @neutralinojs/neu update + wget https://github.com/neutralinojs/neutralinojs/releases/download/v6.2.0/neutralinojs-v6.2.0.zip + unzip neutralinojs-v6.2.0.zip -d bin/ pnpx @neutralinojs/neu build -r - name: Upload artifacts uses: actions/upload-artifact@v4