diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 23283f6b..b7b1a442 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -3,18 +3,26 @@ name: CD on: push: tags: - - '*' + - "*" jobs: deploy: name: Deploy to CocoaPods Trunk - runs-on: macos-latest + runs-on: macos-14 steps: - name: Git Checkout uses: actions/checkout@v4 with: fetch-depth: 0 # required to be able to find Git tags + - name: Set up pkgx environment + uses: pkgxdev/setup@v1 + with: + +: pod xcodes + + - name: Select Xcode version + run: sudo xcodes select 15.4 + - name: Deploy to CocoaPods Trunk run: | set -eo pipefail diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5f6c1dd0..f84d35e1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,13 +17,21 @@ concurrency: jobs: lint-podspec: name: Lint Podspec - runs-on: macos-latest + runs-on: macos-14 steps: - name: Git Checkout uses: actions/checkout@v4 with: fetch-depth: 0 # required to be able to find Git tags + - name: Set up pkgx environment + uses: pkgxdev/setup@v1 + with: + +: pod xcodes + + - name: Select Xcode version + run: sudo xcodes select 15.4 + - name: Lint Podspec run: | set -eo pipefail diff --git a/SwiftUIIntrospect.podspec b/SwiftUIIntrospect.podspec index d947ab79..b64d66cd 100644 --- a/SwiftUIIntrospect.podspec +++ b/SwiftUIIntrospect.podspec @@ -16,4 +16,5 @@ Pod::Spec.new do |spec| spec.ios.deployment_target = '13.0' spec.tvos.deployment_target = '13.0' spec.osx.deployment_target = '10.15' + spec.visionos.deployment_target = '1.0' end