Skip to content

Commit

Permalink
cashmoney
Browse files Browse the repository at this point in the history
  • Loading branch information
bsneed committed Nov 3, 2023
1 parent 2bbc848 commit 8d43891
Showing 1 changed file with 14 additions and 8 deletions.
22 changes: 14 additions & 8 deletions .github/workflows/swift.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"


0 comments on commit 8d43891

Please sign in to comment.