-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: add privacy manifest for accessing user defaults * Set github auth * Set github auth for fastlane * Set to env - not output * Remove base64 args * Use https url as we're not using SSH to clone * Git bearer? * Git bearer. * set under match specifically --------- Co-authored-by: Jamie Sinn <[email protected]>
- Loading branch information
Showing
5 changed files
with
42 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,26 +10,25 @@ jobs: | |
steps: | ||
- name: Checkout Project | ||
uses: actions/checkout@v4 | ||
- name: 'Select Latest Xcode' | ||
- name: Setup Fastlane Auth | ||
run: echo "FASTLANE_GIT_BASIC_AUTHORIZATION=$(echo -n taplytics-robot:${{ secrets.AUTOMATION_USER_TOKEN }} | base64)" >> "$GITHUB_ENV" | ||
- name: "Select Latest Xcode" | ||
uses: maxim-lobanov/setup-xcode@v1 | ||
with: | ||
xcode-version: latest-stable | ||
- name: 'Set SSH key' | ||
uses: webfactory/[email protected] | ||
with: | ||
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }} | ||
- name: 'Carthage Cached Bootstrap' | ||
uses: DevCycleHQ/carthage-bootstrap@xcframeworks2 | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
github-token: ${{ secrets.AUTOMATION_USER_TOKEN }} | ||
use-xcframeworks: true | ||
- name: Fastlane macOS Tests | ||
run: fastlane mac tests | ||
env: | ||
DEVELOPER_APP_ID: '${{ secrets.DEVELOPER_APP_ID }}' | ||
MATCH_PASSWORD: '${{ secrets.MATCH_PASSWORD }}' | ||
TEMP_KEYCHAIN_PASSWORD: '${{ secrets.TEMP_KEYCHAIN_PASSWORD }}' | ||
TEMP_KEYCHAIN_USER: '${{ secrets.TEMP_KEYCHAIN_USER }}' | ||
APPLE_KEY_ID: '${{ secrets.APPLE_KEY_ID }}' | ||
APPLE_ISSUER_ID: '${{ secrets.APPLE_ISSUER_ID }}' | ||
APPLE_KEY_CONTENT: '${{ secrets.APPLE_KEY_CONTENT }}' | ||
MATCH_GIT_BASIC_AUTHORIZATION: "${{ env.FASTLANE_GIT_BASIC_AUTHORIZATION }}" | ||
DEVELOPER_APP_ID: "${{ secrets.DEVELOPER_APP_ID }}" | ||
MATCH_PASSWORD: "${{ secrets.MATCH_PASSWORD }}" | ||
TEMP_KEYCHAIN_PASSWORD: "${{ secrets.TEMP_KEYCHAIN_PASSWORD }}" | ||
TEMP_KEYCHAIN_USER: "${{ secrets.TEMP_KEYCHAIN_USER }}" | ||
APPLE_KEY_ID: "${{ secrets.APPLE_KEY_ID }}" | ||
APPLE_ISSUER_ID: "${{ secrets.APPLE_ISSUER_ID }}" | ||
APPLE_KEY_CONTENT: "${{ secrets.APPLE_KEY_CONTENT }}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>NSPrivacyAccessedAPITypes</key> | ||
<array> | ||
<dict> | ||
<key>NSPrivacyAccessedAPITypeReasons</key> | ||
<array> | ||
<string>CA92.1</string> | ||
</array> | ||
<key>NSPrivacyAccessedAPIType</key> | ||
<string>NSPrivacyAccessedAPICategoryUserDefaults</string> | ||
</dict> | ||
</array> | ||
</dict> | ||
</plist> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters