Release 7.0.0-beta.0 #8
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: Publish SPM Release | |
on: | |
push: | |
tags: | |
- "*" | |
jobs: | |
publish-spm: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Assign Tag Number to RELEASE_VERSION environment variable | |
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV | |
- name: Dispatch Release Workflow on ionic-team/capacitor-swift-pm | |
run: gh workflow run dispatch-release.yaml -f release-version=${{ env.RELEASE_VERSION }} --repo ionic-team/capacitor-swift-pm | |
env: | |
GITHUB_TOKEN: ${{ secrets.CAPICTOR_PUBLISH_XCFRAMEWORK }} |