-
Notifications
You must be signed in to change notification settings - Fork 360
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update project and installation methods (CocoaPods, and Swift Package…
… Manager) to support building and running with Xcode 15.2
- Loading branch information
Troy Stump
committed
May 10, 2024
1 parent
f856226
commit f9a71ff
Showing
72 changed files
with
1,972 additions
and
567 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
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 |
---|---|---|
@@ -1 +1 @@ | ||
github "pinterest/PINOperation" ~> 1.2.1 | ||
github "pinterest/PINOperation" ~> 1.2.3 |
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 +1 @@ | ||
github "pinterest/PINOperation" "1.2" | ||
github "pinterest/PINOperation" "1.2.3" |
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
44 changes: 44 additions & 0 deletions
44
Carthage/Checkouts/PINOperation/.github/workflows/publish_release.yml
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,44 @@ | ||
name: Create Release | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
release-type: | ||
description: 'The type of release. Must be major, minor or patch' | ||
required: true | ||
|
||
env: | ||
# Use Xcode 15.2 or newer to support VisionOS | ||
DEVELOPER_DIR: /Applications/Xcode_15.2.app | ||
|
||
jobs: | ||
create_release: | ||
runs-on: macos-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
# Make sure we can lint before creating the release. | ||
- name: Cocoapods lint | ||
run: make cocoapods | ||
- name: Create Release Commit | ||
env: | ||
GITHUB_CHANGELOG_API_KEY: ${{ secrets.GITHUB_TOKEN }} | ||
OSS_PROJECT: PINOperation | ||
run: | | ||
gem install github_changelog_generator | ||
Scripts/release.sh --${{ github.event.inputs.release-type }} | ||
git push origin HEAD | ||
- name: Tag Release | ||
run: Scripts/tag-release-branch.sh | ||
- name: Publish Release | ||
uses: actions/create-release@v1 | ||
env: | ||
GITHUB_CHANGELOG_API_KEY: ${{ secrets.GITHUB_TOKEN }} | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
tag_name: ${{ env.RELEASE_TAG }} | ||
release_name: ${{ env.RELEASE_TAG }} | ||
body_path: RELEASE_NOTES.md | ||
draft: false | ||
- name: Push to Cocoapods | ||
env: | ||
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }} | ||
run: pod trunk push |
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,3 +1,3 @@ | ||
issues=false | ||
since-tag=1.1.1 | ||
future-release=1.2 | ||
since-tag=1.2.1 | ||
future-release=1.2.2 |
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.