Skip to content

Commit

Permalink
fix : windows path zip yml
Browse files Browse the repository at this point in the history
  • Loading branch information
smallboyc committed Jul 17, 2024
1 parent 61750d0 commit 0391bd6
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/create_release_executables.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,5 +102,7 @@ jobs:
uses: softprops/action-gh-release@v1
with:
files: |
${{runner.os != 'Windows' && github.workspace || ''}}${{runner.os != 'Windows' && '/' || ''}}build/${{matrix.config.installer_name}}
${{github.workspace}}/build/release-binaries-${{matrix.config.name}}.zip
${{ runner.os != 'Windows' && github.workspace || '' }}/build/${{ matrix.config.installer_name }}
${{ runner.os != 'Windows' && github.workspace || '' }}/build/release-binaries-${{ matrix.config.name }}.zip
${{ runner.os == 'Windows' && github.workspace || '' }}\build\${{ matrix.config.installer_name }}
${{ runner.os == 'Windows' && github.workspace || '' }}\build\release-binaries-${{ matrix.config.name }}.zip

0 comments on commit 0391bd6

Please sign in to comment.