Publish Adyen3DS2.podspec #11
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
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 --allow-warnings --verbose | |
env: | |
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }} |