-
Notifications
You must be signed in to change notification settings - Fork 265
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix edit button adaptive color application * Update CHANGELOG * Bump versions to 17.9.1 * Update release workflow * Tint refresh and sync ProgressViews with UIRefreshControl appearance * Add logging to contact --------- Co-authored-by: crow <[email protected]> Co-authored-by: Ryan Lepinski <[email protected]>
- Loading branch information
1 parent
609838a
commit 79f4370
Showing
14 changed files
with
88 additions
and
117 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 |
---|---|---|
|
@@ -26,36 +26,6 @@ jobs: | |
job_name: "iOS SDK Release Started :apple_og:" | ||
url: ${{ secrets.SLACK_WEBHOOK }} | ||
|
||
build-package: | ||
needs: check-version | ||
runs-on: macos-13-xlarge | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Install Coreutils | ||
run: brew install coreutils | ||
- name: Install Apple Certificate | ||
uses: apple-actions/import-codesign-certs@v1 | ||
with: | ||
p12-file-base64: ${{ secrets.CERTIFICATEXC }} | ||
p12-password: ${{ secrets.CERTIFICATEXC_PASS }} | ||
- name: Build SDK | ||
run: make build-package XCODE=14.3.1 | ||
- name: Upload zip distribution | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: airship | ||
path: ./build/Airship.zip | ||
- name: Upload zip distribution | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: airship-carthage | ||
path: ./build/Airship.xcframeworks.zip | ||
- name: Upload Documentation | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: docs | ||
path: ./build/Documentation | ||
|
||
build-package-xcode15: | ||
needs: check-version | ||
runs-on: macos-13-xlarge | ||
|
@@ -70,15 +40,15 @@ jobs: | |
p12-password: ${{ secrets.CERTIFICATEXC_PASS }} | ||
- name: Build SDK | ||
run: make build-package | ||
- name: Upload zip distribution | ||
- name: Upload zip distribution for Xcode 15 | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: airship-xcode15 | ||
name: Airship-Xcode15.zip | ||
path: ./build/Airship.zip | ||
- name: Upload zip distribution | ||
- name: Upload Xcode 15 Carthage zip distribution | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: airship-carthage-xcode15 | ||
name: Airship-Xcode15.xcframeworks.zip | ||
path: ./build/Airship.xcframeworks.zip | ||
- name: Upload Documentation | ||
uses: actions/upload-artifact@v3 | ||
|
@@ -114,7 +84,7 @@ jobs: | |
permissions: | ||
contents: write | ||
runs-on: macos-13-xlarge | ||
needs: [run-tests, build-package, build-samples, build-package-xcode15] | ||
needs: [run-tests, build-samples, build-package-xcode15] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Get the version | ||
|
@@ -130,29 +100,18 @@ jobs: | |
NOTES="${NOTES//$'\n'/%0A}" | ||
NOTES="${NOTES//$'\r'/%0D}" | ||
echo ::set-output name=NOTES::"$NOTES" | ||
- name: Download zip distribution | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: airship | ||
path: ./build | ||
- name: Download Carthage zip distribution | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: airship-carthage-xcode15 | ||
path: ./build | ||
- name: Download Xcode15 zip distribution | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: airship-xcode15 | ||
path: ./buildXcode15 | ||
name: Airship-Xcode15.zip | ||
- name: Download Xcode15 Carthage zip distribution | ||
uses: actions/download-artifact@v3 | ||
with: | ||
name: airship-carthage | ||
path: ./buildXcode15 | ||
name: Airship-Xcode15.xcframeworks.zip | ||
|
||
- name: Github Release | ||
id: create_release | ||
uses: actions/create-release@v1.1.4 | ||
uses: softprops/action-gh-release@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
|
@@ -161,42 +120,10 @@ jobs: | |
body: ${{ steps.get_release_notes.outputs.NOTES }} | ||
draft: false | ||
prerelease: false | ||
- name: Upload zip distribution | ||
uses: actions/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
asset_path: ./build/Airship.zip | ||
asset_name: Airship.zip | ||
asset_content_type: application/zip | ||
- name: Upload carthage zip distribution | ||
uses: actions/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
asset_path: ./build/Airship.xcframeworks.zip | ||
asset_name: Airship.xcframeworks.zip | ||
asset_content_type: application/zip | ||
- name: Upload Xcode15 zip distribution | ||
uses: actions/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
asset_path: ./buildXcode15/Airship.zip | ||
asset_name: Airship-Xcode15.zip | ||
asset_content_type: application/zip | ||
- name: Upload Xcode 15 carthage zip distribution | ||
uses: actions/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
asset_path: ./buildXcode15/Airship.xcframeworks.zip | ||
asset_name: Airship-Xcode15.xcframeworks.zip | ||
asset_content_type: application/zip | ||
files: | | ||
Airship-Xcode15.zip | ||
Airship-Xcode15.xcframeworks.zip | ||
- name: Update prebuilt Xcode 14 repo | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.IOS_DEPLOY_PREBUILT_PAT }} | ||
|
@@ -215,7 +142,7 @@ jobs: | |
|
||
deploy-pods: | ||
runs-on: macos-13-xlarge | ||
needs: [run-tests, build-package, build-samples] | ||
needs: [run-tests, build-package-xcode15, build-samples] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Get the version | ||
|
@@ -236,7 +163,7 @@ jobs: | |
|
||
deploy-docs: | ||
runs-on: macos-13-xlarge | ||
needs: [run-tests, build-package, build-samples] | ||
needs: [run-tests, build-package-xcode15, build-samples] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Get the version | ||
|
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
AIRSHIP_VERSION="17.9.0" | ||
AIRSHIP_VERSION="17.9.1" | ||
|
||
Pod::Spec.new do |s| | ||
s.version = AIRSHIP_VERSION | ||
|
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
//* Copyright Airship and Contributors */ | ||
|
||
CURRENT_PROJECT_VERSION = 17.9.0 | ||
CURRENT_PROJECT_VERSION = 17.9.1 | ||
|
||
// Uncomment to include the preview build warning | ||
// OTHER_CFLAGS = $(inherited) -DUA_PREVIEW=1 |
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
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
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
Oops, something went wrong.