|
|
|
@ -11,14 +11,17 @@ runs:
|
|
|
|
node-version: 20
|
|
|
|
node-version: 20
|
|
|
|
cache: "npm"
|
|
|
|
cache: "npm"
|
|
|
|
- name: Install dependencies
|
|
|
|
- name: Install dependencies
|
|
|
|
|
|
|
|
shell: bash
|
|
|
|
run: npm ci
|
|
|
|
run: npm ci
|
|
|
|
- name: Run Linux server build
|
|
|
|
- name: Run Linux server build
|
|
|
|
env:
|
|
|
|
env:
|
|
|
|
MATRIX_ARCH: ${{ inputs.arch }}
|
|
|
|
MATRIX_ARCH: ${{ inputs.arch }}
|
|
|
|
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
run: |
|
|
|
|
npm run update-build-info
|
|
|
|
npm run update-build-info
|
|
|
|
./bin/build-server.sh
|
|
|
|
./bin/build-server.sh
|
|
|
|
- name: Prepare artifacts
|
|
|
|
- name: Prepare artifacts
|
|
|
|
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
run: |
|
|
|
|
mkdir -p upload
|
|
|
|
mkdir -p upload
|
|
|
|
file=$(find dist -name '*.tar.xz' -print -quit)
|
|
|
|
file=$(find dist -name '*.tar.xz' -print -quit)
|
|
|
|
|