We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4adeba6 + e4a1f2a commit 6c4f0f1Copy full SHA for 6c4f0f1
.github/workflows/build_frameworks.yml
@@ -48,7 +48,7 @@ jobs:
48
path: .github/workflows/podspec.txt
49
- name: Create *.podspec
50
run: |
51
- cat > RiveRuntime.podspec <<-EOF
+ cat > RiveRuntime.podspec <<-EOF
52
${{ steps.podspec.outputs.text }}
53
EOF
54
env:
@@ -93,6 +93,11 @@ jobs:
93
git config --local user.name ${{ github.actor }}
94
git add .
95
git commit -m "Update podspec repo tag:${{ github.event.release.tag_name }}"
96
- git push
+ git push
97
98
- API_TOKEN_GITHUB: ${{ secrets.RIVE_REPO_PAT }}
+ API_TOKEN_GITHUB: ${{ secrets.RIVE_REPO_PAT }}
99
+ - name: Publish pod to the CocoaPods
100
+ uses: michaelhenry/deploy-to-cocoapods-github-action@1.0.10
101
+ env:
102
+ COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }}
103
+
0 commit comments