From 11a4aea231742ca6662d953d63d20a32010a6609 Mon Sep 17 00:00:00 2001 From: PatrykHegenberg <112555272+PatrykHegenberg@users.noreply.github.com> Date: Mon, 25 Nov 2024 20:12:00 +0100 Subject: [PATCH] Update build_app.yml --- .github/workflows/build_app.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.github/workflows/build_app.yml b/.github/workflows/build_app.yml index eb1d0bc..d5529e5 100644 --- a/.github/workflows/build_app.yml +++ b/.github/workflows/build_app.yml @@ -41,3 +41,21 @@ jobs: build-platform: ${{ matrix.build.platform }} package: true go-version: '1.23' + release: + needs: build + runs-on: ubuntu-latest + steps: + - name: Download artifact + uses: actions/download-artifact@v2 + with: + name: grades-management-app-${{ matrix.os }} + + - name: Create Release + uses: softprops/action-gh-release@v1 + with: + tag_name: ${{ github.ref }} + release_name: Release ${{ github.ref }} + draft: false + prerelease: false + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}