From 3fb60b64c0e4cf44d83749814f55603df90cbb32 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Tue, 4 Feb 2025 21:55:13 +0200 Subject: [PATCH] fix(ci): add missing shell config --- .github/actions/build-server/action.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/actions/build-server/action.yml b/.github/actions/build-server/action.yml index 685222057..162116e87 100644 --- a/.github/actions/build-server/action.yml +++ b/.github/actions/build-server/action.yml @@ -11,14 +11,17 @@ runs: node-version: 20 cache: "npm" - name: Install dependencies + shell: bash run: npm ci - name: Run Linux server build env: MATRIX_ARCH: ${{ inputs.arch }} + shell: bash run: | npm run update-build-info ./bin/build-server.sh - name: Prepare artifacts + shell: bash run: | mkdir -p upload file=$(find dist -name '*.tar.xz' -print -quit)