-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* SeatsioObject exposes extraData * Added .build folder to .gitignore * Fix build * Fix build? * Dropped CocoaPods suppor * Support CocoaPods again * Release CocoaPod again
- Loading branch information
Showing
19 changed files
with
50 additions
and
863 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 |
---|---|---|
|
@@ -13,4 +13,5 @@ jobs: | |
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: swift build | ||
- run: pod lib lint |
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 |
---|---|---|
|
@@ -24,12 +24,11 @@ jobs: | |
- uses: fregante/setup-git-user@v2 | ||
- name: Install dependencies | ||
run: yarn add -D -E [email protected] [email protected] | ||
- name: Run release script | ||
- name: Run release script | ||
run: yarn zx ./release.mjs -v $VERSION_TO_BUMP | ||
env: | ||
VERSION_TO_BUMP: ${{ inputs.versionToBump }} | ||
GH_TOKEN: ${{ github.token }} | ||
- run: pod lib lint | ||
- run: pod trunk push | ||
env: | ||
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }} |
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 |
---|---|---|
|
@@ -4,3 +4,5 @@ | |
xcuserdata | ||
Pods/ | ||
.DS_Store | ||
.swiftpm/ | ||
.build/ |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,14 @@ | ||
{ | ||
"pins" : [ | ||
{ | ||
"identity" : "swiftyjson", | ||
"kind" : "remoteSourceControl", | ||
"location" : "https://github.com/SwiftyJSON/SwiftyJSON.git", | ||
"state" : { | ||
"revision" : "af76cf3ef710b6ca5f8c05f3a31307d44a3c5828", | ||
"version" : "5.0.2" | ||
} | ||
} | ||
], | ||
"version" : 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
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 |
---|---|---|
|
@@ -7,7 +7,6 @@ | |
// Copyright (c) 2018 Xiaoye220 <[email protected]> | ||
// | ||
|
||
import UIKit | ||
import WebKit | ||
|
||
public class JustBridge: NSObject { | ||
|
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.