-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds the github workflow to publish the podspec file
- Loading branch information
1 parent
17e1011
commit ced2cb1
Showing
1 changed file
with
20 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: Publish Adyen3DS2.podspec | ||
on: [workflow_dispatch] | ||
jobs: | ||
|
||
publish: | ||
runs-on: macos-12 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Select latest Xcode | ||
uses: maxim-lobanov/setup-xcode@v1 | ||
with: | ||
xcode-version: latest-stable | ||
|
||
- name: Publish Adyen3DS2.podspec | ||
run: | | ||
gem install cocoapods | ||
pod trunk push Adyen3DS2.podspec | ||
env: | ||
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }} |