Skip to content

Commit

Permalink
try again add zip in assets
Browse files Browse the repository at this point in the history
  • Loading branch information
smallboyc committed Jul 17, 2024
1 parent d94b4ca commit d8622d8
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/create_release_executables.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,14 @@ jobs:
cd ${{github.workspace}}/build
cpack
- name: Zip Release binaries
run: |
cd ${{github.workspace}}/bin/Release
zip -r ${GITHUB_WORKSPACE}/build/release-binaries-${{matrix.config.name}}.zip .
- name: Release
uses: softprops/action-gh-release@v1
with:
files: ${{runner.os != 'Windows' && github.workspace || ''}}${{runner.os != 'Windows' && '/' || ''}}build/${{matrix.config.installer_name}}
files: |
${{runner.os != 'Windows' && github.workspace || ''}}${{runner.os != 'Windows' && '/' || ''}}build/${{matrix.config.installer_name}}
${{github.workspace}}/build/release-binaries-${{matrix.config.name}}.zip

0 comments on commit d8622d8

Please sign in to comment.