From 4c1bc10d0f063cc6b50bfc02a8db54e69a0adfa0 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Thu, 9 Nov 2023 21:00:53 +0200 Subject: [PATCH] Publish installer artifact --- .github/workflows/release.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 227951182..975074bbb 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,8 +9,16 @@ jobs: runs-on: windows-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 + - name: Install dependencies run: npm install + - name: Run installer build - run: npm run make \ No newline at end of file + run: npm run make + + - name: Publish installer artifact + uses: actions/upload-artifact@v3 + with: + name: Trilium Notes for Windows (.exe) + path: out/make/squirrel.windows/x64/*.exe \ No newline at end of file