Skip to content

.github/workflows/deployment.yml #84

.github/workflows/deployment.yml

.github/workflows/deployment.yml #84

Workflow file for this run

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 }}