From ece8225ea2a53f113ed642bc9ae3d4aa08b759b0 Mon Sep 17 00:00:00 2001 From: Yuzu Date: Tue, 16 Jun 2026 03:04:18 +0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20ci:=20Automate=20GitHub=20releas?= =?UTF-8?q?e=20creation?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f20d627..bcc3c82 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -96,3 +96,27 @@ jobs: dist/*.AppImage dist/*.deb if-no-files-found: error + + release: + needs: build + if: startsWith(github.ref, 'refs/tags/v') + runs-on: ubuntu-latest + permissions: + contents: write + + steps: + - name: Download artifacts + uses: actions/download-artifact@v6 + with: + path: dist + merge-multiple: true + + - name: Create release + uses: softprops/action-gh-release@v2 + with: + files: | + dist/*.exe + dist/*.dmg + dist/*.AppImage + dist/*.deb + generate_release_notes: true