diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index 1d14208..25382f2 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -94,6 +94,7 @@ jobs: run: | cmake \ -B build \ + -D CMAKE_BUILD_TYPE=RelWithDebInfo \ -D CMAKE_TOOLCHAIN_FILE=cmake/toolchain/ios.toolchain.cmake \ -D ENABLE_BITCODE=0 \ -D PLATFORM=OS64 \ @@ -107,11 +108,16 @@ jobs: --target package \ # EOL + # TODO: Should be a part of packaging. + - name: Prepare for uploading + run: | + cp build/fallout2-ce.zip build/fallout2-ce.ipa + - name: Upload uses: actions/upload-artifact@v3 with: name: fallout2-ce.ipa - path: build/fallout2-ce.zip + path: build/fallout2-ce.ipa retention-days: 7 linux: