Update build_app.yml
This commit is contained in:
parent
09c2d8f83b
commit
11a4aea231
1 changed files with 18 additions and 0 deletions
18
.github/workflows/build_app.yml
vendored
18
.github/workflows/build_app.yml
vendored
|
|
@ -41,3 +41,21 @@ jobs:
|
||||||
build-platform: ${{ matrix.build.platform }}
|
build-platform: ${{ matrix.build.platform }}
|
||||||
package: true
|
package: true
|
||||||
go-version: '1.23'
|
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 }}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue