From f03a514a3c65671cbca81ca4d14bd75a54e7c63e Mon Sep 17 00:00:00 2001 From: Jake Shirley Date: Thu, 7 Sep 2023 23:29:48 -0700 Subject: [PATCH] Publish results? --- .github/workflows/ci_build.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci_build.yml b/.github/workflows/ci_build.yml index 8ad2e613f..7096a7ceb 100644 --- a/.github/workflows/ci_build.yml +++ b/.github/workflows/ci_build.yml @@ -29,14 +29,15 @@ jobs: scheme: Mlem destination: platform=iOS Simulator,name=iPhone 14,OS=16.2 action: test + result-bundle-path: test_results.xcresult #- name: Build with xcodebuild # run: | # xcodebuild -project ./Mlem.xcodeproj -scheme "Mlem" -sdk "iphonesimulator16.2" -quiet -resultBundlePath "build_results.xcresult" - #- uses: kishikawakatsumi/xcresulttool@v1 - # with: - # path: build_results.xcresult - # upload-bundles: never # Permission issues with uploading - # if: success() || failure() + - uses: kishikawakatsumi/xcresulttool@v1 + with: + path: test_results.xcresult + upload-bundles: never # Permission issues with uploading + if: success() || failure() # ^ This is important because the action will be run # even if the test fails in the previous step. \ No newline at end of file