Skip to content

Commit

Permalink
ci: use right folder for artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
vgmoose committed Jul 23, 2023
1 parent 6c71fd6 commit 54d619c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ jobs:
run: |
if [[ "${{ matrix.os }}" == "macos" ]]; then
macdeployqt CaptiveDNS.app -dmg
zip -r ./CaptiveDNS-${{ matrix.os }}.zip CaptiveDNS.dmg
zip -r ./CaptiveDNS-${{ matrix.os }}.zip ./CaptiveDNS/CaptiveDNS.dmg
elif [[ "${{ matrix.os }}" == "windows" ]]; then
windeployqt CaptiveDNS.exe
zip -r ./CaptiveDNS-${{ matrix.os }}.zip CaptiveDNS.exe
zip -r ./CaptiveDNS-${{ matrix.os }}.zip ./CaptiveDNS/CaptiveDNS.exe
else
zip -r ./CaptiveDNS-${{ matrix.os }}.zip CaptiveDNS
zip -r ./CaptiveDNS-${{ matrix.os }}.zip ./CaptiveDNS/CaptiveDNS
fi
- uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit 54d619c

Please sign in to comment.