From aa2c5c0d3c022b14f58968bd7354b7dd632f35cf Mon Sep 17 00:00:00 2001 From: samlhuillier Date: Tue, 28 Nov 2023 13:56:28 -0600 Subject: [PATCH] update release code --- .github/workflows/release.yml | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8a5f565c..5e848c27 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -60,22 +60,18 @@ jobs: ./release/${{ env.APP_VERSION }}/**/*.exe ./release/${{ env.APP_VERSION }}/**/*.AppImage ./release/${{ env.APP_VERSION }}/**/*.dmg - create_release: needs: build_and_package runs-on: ubuntu-latest permissions: contents: write steps: - - name: Download all artifacts + - name: Download Artifacts uses: actions/download-artifact@v3 + with: + path: ./artifacts - name: Create GitHub Release - uses: softprops/action-gh-release@v1 - with: - files: | - **/*.exe - **/*.AppImage - **/*.dmg + run: npm exec electron-builder -- --publish always --win --mac --linux env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}