Skip to content

Commit 0561430

Browse files
authored
Add GitHub release step to workflow
Add step to create a GitHub release for the executable.
1 parent b03b793 commit 0561430

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/dotnet-desktop.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,3 +45,10 @@ jobs:
4545
with:
4646
name: StreamRoulette-App
4747
path: ./publish_output/StreamRoulette.exe
48+
49+
- name: Create Release
50+
uses: softprops/action-gh-release@v1
51+
if: startsWith(github.ref, 'refs/tags/')
52+
with:
53+
files: ./publish_output/StreamRoulette.exe # Шлях до файлу
54+
generate_release_notes: true # Автоматично додає опис змін

0 commit comments

Comments
 (0)