Skip to content

ci: fix windows deploy #21

ci: fix windows deploy

ci: fix windows deploy #21

Workflow file for this run

name: Build CaptiveDNS
on:
push:
branches:
- main
- ci-release
pull_request:
branches:
- main
jobs:
all:
strategy:
matrix:
os: [ubuntu, windows, macos]
runs-on: ${{ matrix.os }}-latest
steps:
- uses: actions/checkout@main
- name: Install Qt
uses: jurplel/install-qt-action@v3
- uses: ilammy/msvc-dev-cmd@v1
- name: Build for ${{ matrix.os }}
shell: bash
run: cd CaptiveDNS && qmake && (make || nmake || (rm /usr/bin/link && nmake))
- name: Bundle for ${{ matrix.os }}
shell: bash
run: |
if [[ "${{ matrix.os }}" == "macos" ]]; then
macdeployqt ./CaptiveDNS/CaptiveDNS.app -dmg
zip -r ./CaptiveDNS-${{ matrix.os }}.zip ./CaptiveDNS/CaptiveDNS.dmg
elif [[ "${{ matrix.os }}" == "windows" ]]; then
mkdir -p ./CaptiveDNS/CaptiveDNS
ls -lastr .
ls -lastr ./CaptiveDNS
ls -lastr ./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
- uses: actions/upload-artifact@v3
with:
name: CaptiveDNS-${{ matrix.os }}
path: ./CaptiveDNS-${{ matrix.os }}.zip