From 8d43891ed59be3b58b7d42d15c06ece356ce379d Mon Sep 17 00:00:00 2001 From: Brandon Sneed Date: Fri, 3 Nov 2023 10:41:39 -0700 Subject: [PATCH] cashmoney --- .github/workflows/swift.yml | 22 ++++++++++++++-------- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/.github/workflows/swift.yml b/.github/workflows/swift.yml index eb06fed..25b8d9e 100644 --- a/.github/workflows/swift.yml +++ b/.github/workflows/swift.yml @@ -19,28 +19,34 @@ jobs: needs: cancel_previous runs-on: macos-13 steps: - - uses: jsdaniell/create-json@v1.2.1 - with: - name: "secrets.json" - json: ${{ secrets }} - uses: maxim-lobanov/setup-xcode@v1 with: xcode-version: '15.0.1' - uses: actions/checkout@v2 + - name: create-json + id: create-json + uses: jsdaniell/create-json@v1.2.1 + with: + name: "secrets.json" + json: ${{ secrets }} + dir: "./" - run: cat secrets.json & pwd & xcodebuild clean -scheme SegmentConsentOneTrust test -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 15' CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGN_ENTITLEMENTS="" CODE_SIGNING_ALLOWED="NO" build_and_test_tvos: needs: cancel_previous runs-on: macos-13 steps: - - uses: jsdaniell/create-json@v1.2.1 - with: - name: "secrets.json" - json: ${{ secrets }} - uses: maxim-lobanov/setup-xcode@v1 with: xcode-version: '15.0.1' - uses: actions/checkout@v2 + - name: create-json + id: create-json + uses: jsdaniell/create-json@v1.2.1 + with: + name: "secrets.json" + json: ${{ secrets }} + dir: "./" - run: cat secrets.json & pwd & xcodebuild clean -scheme SegmentConsentOneTrust test -sdk appletvsimulator -destination 'platform=tvOS Simulator,name=Apple TV' CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGN_ENTITLEMENTS="" CODE_SIGNING_ALLOWED="NO" \ No newline at end of file