diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a7040936..05afc314 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -44,15 +44,19 @@ jobs: build-windows: name: Build App for Windows runs-on: windows-latest + strategy: + fail-fast: false + matrix: + arch: [x64, ARM64] steps: - name: Checkout code uses: actions/checkout@v2 with: submodules: true - name: Build - run: mkdir build; cd build; cmake -DCMAKE_BUILD_TYPE=Release .. ; cmake --build . --config release --target install + run: mkdir build; cd build; cmake -A${{ matrix.arch }} -DCMAKE_BUILD_TYPE=Release .. ; cmake --build . --config release --target install - name: Upload Artifacts uses: actions/upload-artifact@v2 with: - name: FatFileFinder_win64 - path: build\release\*.exe \ No newline at end of file + name: FatFileFinder_win${{ matrix.arch }} + path: build\release\*.exe