Skip to content

Commit 154b34e

Browse files
committed
0.38.1
1 parent cca6687 commit 154b34e

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

.github/workflows/release.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@ jobs:
1414
uses: actions/checkout@v2
1515

1616
- name: Select Xcode version
17-
run: sudo xcode-select --switch /Applications/Xcode_16.2.app
17+
run: |
18+
sudo xcode-select --switch /Applications/Xcode_16.2.app
19+
xcodebuild -runFirstLaunch
1820
1921
- name: Build
2022
run: |
@@ -35,7 +37,7 @@ jobs:
3537
- name: Deploy to Cocoapods
3638
run: |
3739
set -eo pipefail
38-
pod trunk push FigmaExport.podspec
40+
pod trunk push FigmaExport.podspec --verbose
3941
env:
4042
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }}
4143

FigmaExport.podspec

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
Pod::Spec.new do |spec|
22
spec.name = "FigmaExport"
3-
spec.version = "0.38.0"
3+
spec.version = "0.38.1"
44
spec.summary = "Command line utility to export colors, typography, icons and images from Figma to Xcode / Android Studio project."
55
spec.homepage = "https://github.com/RedMadRobot/figma-export"
66
spec.license = { type: "MIT", file: "LICENSE" }
77
spec.author = { "Daniil Subbotin" => "mail@subdan.ru" }
88
spec.source = { http: "#{spec.homepage}/releases/download/#{spec.version}/figma-export.zip" }
99
spec.preserve_paths = '*'
1010
spec.platform = :ios
11+
spec.ios.deployment_target = '15.0'
1112
end

Sources/FigmaExport/FigmaExportCommand.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ enum FigmaExportError: LocalizedError {
3232
@main
3333
struct FigmaExportCommand: ParsableCommand {
3434

35-
static let version = "0.38.0"
35+
static let version = "0.38.1"
3636

3737
static let svgFileConverter = VectorDrawableConverter()
3838
static let fileWriter = FileWriter()

0 commit comments

Comments
 (0)