Skip to content

Commit

Permalink
ci: fix windows deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
vgmoose committed Jul 23, 2023
1 parent 93b49b1 commit 2a87fc9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,10 @@ jobs:
macdeployqt ./CaptiveDNS/CaptiveDNS.app -dmg
zip -r ./CaptiveDNS-${{ matrix.os }}.zip ./CaptiveDNS.dmg
elif [[ "${{ matrix.os }}" == "windows" ]]; then
windeployqt CaptiveDNS.exe
zip -r ./CaptiveDNS-${{ matrix.os }}.zip ./CaptiveDNS/CaptiveDNS.exe
mkdir -p ./CaptiveDNS/CaptiveDNS
cp ./CaptiveDNS/CaptiveDNS.exe ./CaptiveDNS/CaptiveDNS
windeployqt ./CaptiveDNS/CaptiveDNS/CaptiveDNS.exe
zip -r ./CaptiveDNS-${{ matrix.os }}.zip ./CaptiveDNS/CaptiveDNS
else
zip -r ./CaptiveDNS-${{ matrix.os }}.zip ./CaptiveDNS/CaptiveDNS
fi
Expand Down

0 comments on commit 2a87fc9

Please sign in to comment.