From 4489f028d4c69199dd13ed1ef7ce57b48c0d4959 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 11 Feb 2026 01:22:11 +0000 Subject: [PATCH 1/3] Initial plan From 193facccac05844cef3b1a60a237d795756852fa Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 11 Feb 2026 01:23:46 +0000 Subject: [PATCH 2/3] Add GitHub release automation for build artifacts Co-authored-by: emrekayik <54414075+emrekayik@users.noreply.github.com> --- .github/workflows/build.yml | 22 ++++++++++++++++++++++ .github/workflows/main.yml | 22 ++++++++++++++++++++++ 2 files changed, 44 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 82dca36..5589b75 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -59,3 +59,25 @@ jobs: name: wails-${{ matrix.os }} path: build/bin/** retention-days: 14 + + release: + name: Create Release + needs: build + runs-on: ubuntu-latest + if: startsWith(github.ref, 'refs/tags/v') + permissions: + contents: write + + steps: + - name: Download all artifacts + uses: actions/download-artifact@v4 + with: + path: artifacts + + - name: Create Release + uses: softprops/action-gh-release@v1 + with: + files: artifacts/**/* + draft: false + prerelease: false + generate_release_notes: true diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 82dca36..5589b75 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -59,3 +59,25 @@ jobs: name: wails-${{ matrix.os }} path: build/bin/** retention-days: 14 + + release: + name: Create Release + needs: build + runs-on: ubuntu-latest + if: startsWith(github.ref, 'refs/tags/v') + permissions: + contents: write + + steps: + - name: Download all artifacts + uses: actions/download-artifact@v4 + with: + path: artifacts + + - name: Create Release + uses: softprops/action-gh-release@v1 + with: + files: artifacts/**/* + draft: false + prerelease: false + generate_release_notes: true From a9b6f79b7bd31fffe7ef839f53009bb0b2f0dc0e Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 11 Feb 2026 01:24:38 +0000 Subject: [PATCH 3/3] Make artifact file paths more explicit in release step Co-authored-by: emrekayik <54414075+emrekayik@users.noreply.github.com> --- .github/workflows/build.yml | 5 ++++- .github/workflows/main.yml | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5589b75..0a34fa0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -77,7 +77,10 @@ jobs: - name: Create Release uses: softprops/action-gh-release@v1 with: - files: artifacts/**/* + files: | + artifacts/wails-ubuntu-latest/* + artifacts/wails-windows-latest/* + artifacts/wails-macos-latest/* draft: false prerelease: false generate_release_notes: true diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 5589b75..0a34fa0 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -77,7 +77,10 @@ jobs: - name: Create Release uses: softprops/action-gh-release@v1 with: - files: artifacts/**/* + files: | + artifacts/wails-ubuntu-latest/* + artifacts/wails-windows-latest/* + artifacts/wails-macos-latest/* draft: false prerelease: false generate_release_notes: true