File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -76,14 +76,12 @@ jobs:
7676
7777 - name : Create GitHub Release
7878 if : github.event_name == 'push'
79- uses : softprops/action-gh-release@v2
80- with :
81- tag_name : ${{ steps.version.outputs.RELEASE_TAG }}
82- name : ${{ steps.version.outputs.RELEASE_NAME }}
83- body_path : /tmp/release_notes.txt
84- draft : false
85- prerelease : ${{ steps.version.outputs.IS_PRERELEASE == 'true' }}
86- files : |
87- dist/PCM_v${{ steps.version.outputs.VERSION }}_Linux_GTK3.tar.gz
88- dist/PCM_v${{ steps.version.outputs.VERSION }}_Linux_GTK3.zip
89- dist/pcm_${{ steps.version.outputs.VERSION }}_all.deb
79+ env :
80+ GH_TOKEN : ${{ github.token }}
81+ run : |
82+ gh release create "${{ steps.version.outputs.RELEASE_TAG }}" \
83+ --title "${{ steps.version.outputs.RELEASE_NAME }}" \
84+ --notes-file /tmp/release_notes.txt \
85+ "dist/PCM_v${{ steps.version.outputs.VERSION }}_Linux_GTK3.tar.gz" \
86+ "dist/PCM_v${{ steps.version.outputs.VERSION }}_Linux_GTK3.zip" \
87+ "dist/pcm_${{ steps.version.outputs.VERSION }}_all.deb"
You can’t perform that action at this time.
0 commit comments