Skip to content

Commit

Permalink
[Build] Strip executable
Browse files Browse the repository at this point in the history
  • Loading branch information
setvisible committed Dec 31, 2023
1 parent 3ed39ca commit b62f839
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,21 @@ jobs:
working-directory: "${{env.Project_BUILD_DIR}}"
run: cmake --build . --target install

- name: Strip
- name: Strip (Windows Only)
if: ${{ matrix.os == 'windows-latest' }}
continue-on-error: true
working-directory: "${{env.Project_INSTALL_DIR}}"
shell: bash
run: |
echo "Before:"
ls -al
strip "launcher.exe"
strip "DownZemAll.exe"
echo ""
echo "After:"
ls -al
- name: Strip (Linux Only)
if: ${{ matrix.os == 'ubuntu-latest' }}
continue-on-error: true
working-directory: "${{env.Project_INSTALL_DIR}}"
Expand Down

0 comments on commit b62f839

Please sign in to comment.