Skip to content

Commit

Permalink
no longer add a v in front of the version tag for rive-ios-pod, we do…
Browse files Browse the repository at this point in the history
…nt use it anywhere else, its not good for swiftpm
  • Loading branch information
mjtalbot committed Feb 28, 2022
1 parent 8bce44e commit 33fb185
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_frameworks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,8 @@ jobs:
git add .
git commit -m "Update podspec repo tag:${{ env.RELEASE_VERSION }}"
git push
git tag v${{ env.RELEASE_VERSION }}
git push origin v${{ env.RELEASE_VERSION }}
git tag ${{ env.RELEASE_VERSION }}
git push origin ${{ env.RELEASE_VERSION }}
env:
API_TOKEN_GITHUB: ${{ secrets.RIVE_REPO_PAT }}
- name: Publish pod to the CocoaPods
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/podspec.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Pod::Spec.new do |spec|
spec.swift_version = '5.0'
spec.source = {
:git => "https://github.com/rive-app/rive-ios-pod.git",
:tag => "v#{spec.version}"
:tag => "#{spec.version}"
}
spec.ios.vendored_frameworks = 'RiveRuntime.xcframework'
end

0 comments on commit 33fb185

Please sign in to comment.