We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2b0625 commit 774d896Copy full SHA for 774d896
.github/workflows/cd.yml
@@ -7,8 +7,9 @@ on:
7
8
jobs:
9
deploy:
10
+ if: false
11
name: Deploy to CocoaPods Trunk
- runs-on: macos-14
12
+ runs-on: macos-15
13
steps:
14
- name: Git Checkout
15
uses: actions/checkout@v4
@@ -21,7 +22,7 @@ jobs:
21
22
+: pod xcodes
23
24
- name: Select Xcode version
- run: sudo xcodes select 15.4
25
+ run: sudo xcodes select 16.4
26
27
- name: Deploy to CocoaPods Trunk
28
run: |
script/pod_release
@@ -0,0 +1,6 @@
1
+#!/usr/bin/env bash
2
+
3
+export LIB_VERSION=$(git describe --tags `git rev-list --tags --max-count=1`)
4
5
+echo "Publishing version $LIB_VERSION"
6
+pod trunk push SwiftUIIntrospect.podspec --allow-warnings
0 commit comments