Skip to content

Commit

Permalink
ci: get properly exe filename
Browse files Browse the repository at this point in the history
  • Loading branch information
javierguzman committed Jul 20, 2023
1 parent c79b9b7 commit 96eb6ac
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,7 @@ jobs:
run: |
find out/make -type f -name '*.exe' -exec bash -c 'mv "$1" "${1// /-}"' _ {} \;
find out/make -type f -name '*.exe' -exec cp -v {} windows_signing \;
ls *.exe
EXE_FILE=$(ls *.exe 2>/dev/null | head -n 1)
EXE_FILE=$(find windows_signing -type f -name '*.exe' -exec basename {} \; 2>/dev/null | head -n 1)
echo "Found .exe file: $EXE_FILE"
- if: runner.os == 'Windows'
name: Sign executable
Expand Down

0 comments on commit 96eb6ac

Please sign in to comment.