From e836d745fbfc2db917d7a1a71e5b3ca13105eee9 Mon Sep 17 00:00:00 2001 From: Kot <1192090+koteq@users.noreply.github.com> Date: Fri, 22 Mar 2024 20:08:25 +0000 Subject: [PATCH] Add release step to CI/CD job --- .github/workflows/build.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index cde09c6e..9fd19759 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -44,3 +44,10 @@ jobs: path: | bin/${{ env.BUILD_ARCH }}/TaigaSetup.exe bin/${{ env.BUILD_ARCH }}/Release/Taiga.exe + + - name: Release + uses: softprops/action-gh-release@v2 + if: startsWith(github.ref, 'refs/tags/') + with: + files: | + bin/${{ env.BUILD_ARCH }}/Release/Taiga.exe