.github/workflows/deployment.yml #84
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
on: | |
workflow_dispatch: # this workflow gets manually executed when commits merged into main | |
jobs: | |
deploy: | |
runs-on: macos-14 | |
permissions: | |
contents: write # to make a git tag | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- uses: ./.github/actions/setup-ios | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- uses: ./.github/actions/setup-semantic-release | |
- uses: cycjimmy/semantic-release-action@v4 | |
with: | |
branch: latest # have this match what this workflow triggers on | |
semantic_version: latest | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }} |