change release action

This commit is contained in:
cwilvx
2025-08-30 17:12:03 +03:00
parent bb3167ed88
commit 7341c14f9c
+8 -10
View File
@@ -348,17 +348,15 @@ jobs:
merge-multiple: true merge-multiple: true
- name: Upload artifacts to GitHub Release - name: Upload artifacts to GitHub Release
uses: softprops/action-gh-release@v2 uses: ncipollo/release-action@v1
with: with:
allowUpdates: true
draft: true draft: true
name: ${{ format('v{0}',github.event.inputs.tag) }} name: ${{ format('v{0}',github.event.inputs.tag) }}
body_path: .github/changelog.md tag: ${{ format('v{0}',github.event.inputs.tag) }}
fail_on_unmatched_files: true bodyFile: .github/changelog.md
target_commitish: ${{ github.sha }} artifactErrorsFailBuild: true
make_latest: ${{github.event.inputs.is_latest == 'true' }} commit: ${{ github.sha }}
files: | makeLatest: ${{github.event.inputs.is_latest == 'true'}}
client.zip artifacts: "client.zip,wheels/*,pyinstaller/*,appimage/*"
wheels/**
pyinstaller/**
appimage/**
token: ${{ secrets.GITHUB_TOKEN }} token: ${{ secrets.GITHUB_TOKEN }}