Upload PHP binaries to the Github release #1
Workflow file for this run
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: Release Cocoapods | |
on: | |
push: | |
tags: | |
- v*.*.* | |
- v*.*.*-rc.* | |
jobs: | |
release-apple-xcframeworks: | |
runs-on: macos-13 | |
env: | |
DEVELOPER_DIR: /Applications/Xcode_14.3.1.app/Contents/Developer | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Check SPM | |
run: swift test | |
- name: Deploy Cocoapods | |
env: | |
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }} | |
run: | | |
pod trunk push VSCCrypto.podspec | |
pod trunk push --synchronous VirgilCryptoFoundation.podspec | |
pod trunk push --synchronous VirgilCryptoPythia.podspec | |
pod trunk push --synchronous VirgilCryptoRatchet.podspec |