chore(nx/server): fix upload path

This commit is contained in:
Elian Doran 2025-04-27 12:43:26 +03:00
parent 0784a71d79
commit bf98d92c23
No known key found for this signature in database

View File

@ -28,6 +28,6 @@ runs:
shell: bash shell: bash
run: | run: |
mkdir -p upload mkdir -p upload
file=$(find ./apps/server/dist -name '*.tar.xz' -print -quit) file=$(find ./apps/server/out -name '*.tar.xz' -print -quit)
name=${{ github.ref_name }} name=${{ github.ref_name }}
cp "$file" "upload/TriliumNextNotes-Server-${name//\//-}-${{ inputs.os }}-${{ inputs.arch }}.tar.xz" cp "$file" "upload/TriliumNextNotes-Server-${name//\//-}-${{ inputs.os }}-${{ inputs.arch }}.tar.xz"