Update build_app.yml

This commit is contained in:
PatrykHegenberg 2024-11-25 20:12:00 +01:00 committed by GitHub
parent 09c2d8f83b
commit 11a4aea231
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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 }}