diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1b1e5d9..02e171d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,7 +14,9 @@ jobs: uses: actions/checkout@v2 - name: Select Xcode version - run: sudo xcode-select --switch /Applications/Xcode_16.2.app + run: | + sudo xcode-select --switch /Applications/Xcode_16.2.app + xcodebuild -runFirstLaunch - name: Build run: | @@ -35,7 +37,7 @@ jobs: - name: Deploy to Cocoapods run: | set -eo pipefail - pod trunk push FigmaExport.podspec + pod trunk push FigmaExport.podspec --verbose env: COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }} diff --git a/FigmaExport.podspec b/FigmaExport.podspec index 2b7de77..3b31efd 100644 --- a/FigmaExport.podspec +++ b/FigmaExport.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |spec| spec.name = "FigmaExport" - spec.version = "0.38.0" + spec.version = "0.38.1" spec.summary = "Command line utility to export colors, typography, icons and images from Figma to Xcode / Android Studio project." spec.homepage = "https://github.com/RedMadRobot/figma-export" spec.license = { type: "MIT", file: "LICENSE" } @@ -8,4 +8,5 @@ Pod::Spec.new do |spec| spec.source = { http: "#{spec.homepage}/releases/download/#{spec.version}/figma-export.zip" } spec.preserve_paths = '*' spec.platform = :ios + spec.ios.deployment_target = '15.0' end diff --git a/Sources/FigmaExport/FigmaExportCommand.swift b/Sources/FigmaExport/FigmaExportCommand.swift index 8d5b24d..b9ed3d3 100644 --- a/Sources/FigmaExport/FigmaExportCommand.swift +++ b/Sources/FigmaExport/FigmaExportCommand.swift @@ -32,7 +32,7 @@ enum FigmaExportError: LocalizedError { @main struct FigmaExportCommand: ParsableCommand { - static let version = "0.38.0" + static let version = "0.38.1" static let svgFileConverter = VectorDrawableConverter() static let fileWriter = FileWriter()