Skip to content

Commit

Permalink
IDK
Browse files Browse the repository at this point in the history
  • Loading branch information
ewancg committed Oct 22, 2022
1 parent d61c01b commit b7e9528
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
matrix:
config:
- { name: "Windows", os: windows-latest, make: nmake, qt_arch: win64_msvc2019_64 }
- { name: "Windows", os: windows-latest, make: nmake, qt_arch: win64_msvc2019_64, target_arch: amd64 }
- { name: "Windows 32-bit", os: windows-latest, make: nmake, qt_arch: win32_msvc2019, target_arch: x86 }
- { name: "macOS", os: macos-latest, make: "make -j2", qt_arch: clang_64 }
- { name: "Ubuntu", os: ubuntu-18.04, make: "make -j2", qt_arch: gcc_64 }
Expand Down Expand Up @@ -187,7 +187,7 @@ jobs:
# Deployment finalizing
if [ "${{ runner.os }}" == "Windows" ]; then
7z a -tzip "${artifact_name}" "${PACKAGE}"
cp "${artifact_name}" output.zip
cp "${artifact_name}" package-result-${{ matrix.config.target_arch }}.zip
elif [ "${{ runner.os }}" == "macOS" ]; then
pushd "${PACKAGE}"
Expand Down Expand Up @@ -226,7 +226,7 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: package-result
path: "output.zip"
path: "package-result-${{ matrix.config.target_arch }}.zip"

- name: Release
if: steps.identify-build.outputs.release == 'true'
Expand Down

0 comments on commit b7e9528

Please sign in to comment.