From 4a89555b622a7fed8917a17d36bedb8f39504099 Mon Sep 17 00:00:00 2001 From: Max Litruv Boonzaayer Date: Thu, 6 Nov 2025 03:22:55 +1100 Subject: [PATCH] added .github/workflows/build.yml --- .github/workflows/build.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..83c50fe --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,26 @@ +name: Build/release + +on: push + +jobs: + release: + runs-on: windows-latest + + steps: + - name: Check out Git repository + uses: actions/checkout@v4 + + - name: Install Node.js and NPM + uses: actions/setup-node@v4 + with: + node-version: 20 + + - name: Install dependencies + run: npm install + + - name: Build/release Electron app + uses: samuelmeuli/action-electron-builder@v1 + with: + github_token: ${{ secrets.github_token }} + release: ${{ startsWith(github.ref, 'refs/tags/v') }} + args: --win