From 93583063049f9c89600435b5b9f9976281bee37e Mon Sep 17 00:00:00 2001 From: samlhuillier Date: Tue, 28 Nov 2023 14:56:37 -0600 Subject: [PATCH] update release code --- .github/workflows/release.yml | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5e848c27..674b7360 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -66,12 +66,18 @@ jobs: permissions: contents: write steps: - - name: Download Artifacts - uses: actions/download-artifact@v3 + - name: Checkout code + uses: actions/checkout@v3 + + - name: Set up Node.js + uses: actions/setup-node@v3 with: - path: ./artifacts + node-version: "18" + + - name: Install dependencies + run: npm install - - name: Create GitHub Release + - name: Build and Publish Electron App run: npm exec electron-builder -- --publish always --win --mac --linux env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}