mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-27 01:52:28 +08:00
34 lines
924 B
YAML
34 lines
924 B
YAML
inputs:
|
|
os:
|
|
description: "One of the supported platforms: windows"
|
|
required: true
|
|
arch:
|
|
description: "The architecture to build for: x64, arm64"
|
|
required: true
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- uses: pnpm/action-setup@v4
|
|
- name: Set up node & dependencies
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 22
|
|
cache: "pnpm"
|
|
- name: Install dependencies
|
|
shell: bash
|
|
run: pnpm install --frozen-lockfile
|
|
- name: Run Linux server build
|
|
env:
|
|
MATRIX_ARCH: ${{ inputs.arch }}
|
|
shell: bash
|
|
run: |
|
|
pnpm run chore:update-build-info
|
|
pnpm nx --project=server package
|
|
- name: Prepare artifacts
|
|
shell: bash
|
|
run: |
|
|
mkdir -p upload
|
|
file=$(find ./apps/server/out -name '*.tar.xz' -print -quit)
|
|
name=${{ github.ref_name }}
|
|
cp "$file" "upload/TriliumNextNotes-Server-${name//\//-}-${{ inputs.os }}-${{ inputs.arch }}.tar.xz"
|