From c0631c6df42a7b39e965246f1299af6c01bd5ddf Mon Sep 17 00:00:00 2001 From: Max Bothe Date: Mon, 19 Jun 2023 11:47:47 +0200 Subject: [PATCH] Disable package plugin validation on CI --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e2be5a403..2d9f971df 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,6 +25,9 @@ jobs: - name: Copy brand assets run: cp -R ./iOS/Branding/openHPI/assets-ios-brand.xcassets ./iOS/assets-ios-brand.generated.xcassets + - name: Disable package plugin validation + run: defaults write com.apple.dt.Xcode IDESkipPackagePluginFingerprintValidatation -bool YES + - name: Build + Test run: bundle exec fastlane run scan scheme:"${scheme}" clean:true env: @@ -47,6 +50,9 @@ jobs: - name: Copy brand assets run: cp -R ./iOS/Branding/openHPI/assets-ios-brand.xcassets ./iOS/assets-ios-brand.generated.xcassets + + - name: Disable package plugin validation + run: defaults write com.apple.dt.Xcode IDESkipPackagePluginFingerprintValidatation -bool YES - name: Build + Test run: bundle exec fastlane run scan scheme:"${scheme}" clean:true