We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d57f4f8 commit a67eaf5Copy full SHA for a67eaf5
1 file changed
.github/workflows/release.yml
@@ -64,17 +64,19 @@ jobs:
64
if: matrix.os == 'windows-latest'
65
run: pnpm run build:win
66
67
- - name: Generate Changelog
+ - name: Generate Changelog and Create Release
68
if: github.event_name == 'push'
69
run: npx changelogithub
70
env:
71
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
72
73
- - name: Create Release
+ - name: Upload Release Assets
74
+ if: github.event_name == 'push' && github.ref_type == 'tag'
75
uses: softprops/action-gh-release@v2
76
with:
- draft: false
77
- prerelease: true
+ fail_on_unmatched_files: false
78
+ append_body: false
79
+ generate_release_notes: false
80
files: |
81
dist/*.exe
82
dist/*.zip
0 commit comments