From 954b0b1ac315878f8aa1466f697963fc7f4b10b7 Mon Sep 17 00:00:00 2001 From: Alexander Batalov Date: Fri, 14 Oct 2022 09:43:08 +0300 Subject: [PATCH] Fix CI --- .github/workflows/ci-build.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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: