Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,13 +93,18 @@ jobs:

- name: Rename binary (Windows)
if: matrix.platform == 'win'
shell: bash
run: |
cd dist
# pkg creates binaries with package name
if [ -f "investec-ipb-win-x64.exe" ]; then
mv investec-ipb-win-x64.exe ${{ matrix.binary-name }}
elif [ -f "index.exe" ]; then
mv index.exe ${{ matrix.binary-name }}
else
echo "Expected Windows binary not found in dist/"
ls -la
exit 1
fi

- name: Calculate SHA256 checksum (macOS/Linux)
Expand Down