We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7bc1e13 commit ab556afCopy full SHA for ab556af
.github/workflows/cd.yml
@@ -0,0 +1,29 @@
1
+name: CD
2
+
3
+on:
4
+ workflow_dispatch:
5
+ push:
6
+ tags:
7
+ - "*.*.*"
8
9
+jobs:
10
+ release_version:
11
+ name: Release Version
12
+ runs-on: macos-latest
13
14
+ steps:
15
+ - uses: actions/checkout@v4
16
17
+ - uses: softprops/action-gh-release@v2
18
+ with:
19
+ generate_release_notes: true
20
+ env:
21
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
22
23
+ - name: Deploy to CocoaPods
24
25
+ COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }}
26
+ run: |
27
+ set -eo pipefail
28
+ pod lib lint --allow-warnings
29
+ pod trunk push --allow-warnings
0 commit comments