From 5561947f89dc1a89074673651b84cfbcf639b04c Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 11 Feb 2026 00:42:53 +0000 Subject: [PATCH 1/3] Initial plan From a1b07e145a19fa6d7d10ae250a0dc32cb43bf403 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 11 Feb 2026 00:44:29 +0000 Subject: [PATCH 2/3] Fix GitHub Actions workflow issues Co-authored-by: emrekayik <54414075+emrekayik@users.noreply.github.com> --- .github/workflows/main.yml | 9 ++++++-- .github/workflows/wails.yml | 44 ------------------------------------- 2 files changed, 7 insertions(+), 46 deletions(-) delete mode 100644 .github/workflows/wails.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c97900d..320cd8b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -2,9 +2,14 @@ name: Wails build on: push: + branches: + - main tags: - # Match any new tag + # Match any new tag - '*' + pull_request: + branches: + - main env: # Necessary for most environments as build failure can occur due to OOM issues @@ -30,7 +35,7 @@ jobs: runs-on: ${{ matrix.build.os }} steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: submodules: recursive diff --git a/.github/workflows/wails.yml b/.github/workflows/wails.yml deleted file mode 100644 index c97900d..0000000 --- a/.github/workflows/wails.yml +++ /dev/null @@ -1,44 +0,0 @@ -name: Wails build - -on: - push: - tags: - # Match any new tag - - '*' - -env: - # Necessary for most environments as build failure can occur due to OOM issues - NODE_OPTIONS: "--max-old-space-size=4096" - -jobs: - build: - strategy: - # Failure in one platform build won't impact the others - fail-fast: false - matrix: - build: - - name: 'App' - platform: 'linux/amd64' - os: 'ubuntu-latest' - - name: 'App' - platform: 'windows/amd64' - os: 'windows-latest' - - name: 'App' - platform: 'darwin/universal' - os: 'macos-latest' - - runs-on: ${{ matrix.build.os }} - steps: - - name: Checkout - uses: actions/checkout@v2 - with: - submodules: recursive - - - name: Build wails - uses: dAppServer/wails-build-action@v2.2 - id: build - with: - build-name: ${{ matrix.build.name }} - build-platform: ${{ matrix.build.platform }} - package: false - go-version: '1.20' From e38c01e81ed373599fa3a21720bacecd57a220a1 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 11 Feb 2026 00:44:54 +0000 Subject: [PATCH 3/3] Clean up YAML formatting in workflow file Co-authored-by: emrekayik <54414075+emrekayik@users.noreply.github.com> --- .github/workflows/main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 320cd8b..9e67d0b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -18,18 +18,18 @@ env: jobs: build: strategy: - # Failure in one platform build won't impact the others + # Failure in one platform build won't impact the others fail-fast: false matrix: build: - name: 'App' - platform: 'linux/amd64' + platform: 'linux/amd64' os: 'ubuntu-latest' - name: 'App' - platform: 'windows/amd64' + platform: 'windows/amd64' os: 'windows-latest' - name: 'App' - platform: 'darwin/universal' + platform: 'darwin/universal' os: 'macos-latest' runs-on: ${{ matrix.build.os }}