Skip to content

Commit

Permalink
Add creating release.
Browse files Browse the repository at this point in the history
  • Loading branch information
rinrab committed Dec 26, 2023
1 parent 3cfa4a6 commit 8cc3e2a
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,19 @@ jobs:
- name: Build
run: dotnet build Installer --arch ${{ matrix.architecture }} --configuration Release

- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: false

- name: Upload binaries to release
id: upload-release-asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 8cc3e2a

Please sign in to comment.