Skip to content

Commit 1f8d8f7

Browse files
committed
0.38.2
1 parent 154b34e commit 1f8d8f7

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ jobs:
1616
- name: Select Xcode version
1717
run: |
1818
sudo xcode-select --switch /Applications/Xcode_16.2.app
19-
xcodebuild -runFirstLaunch
2019
2120
- name: Build
2221
run: |
@@ -37,7 +36,7 @@ jobs:
3736
- name: Deploy to Cocoapods
3837
run: |
3938
set -eo pipefail
40-
pod trunk push FigmaExport.podspec --verbose
39+
pod trunk push FigmaExport.podspec
4140
env:
4241
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }}
4342

FigmaExport.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |spec|
22
spec.name = "FigmaExport"
3-
spec.version = "0.38.1"
3+
spec.version = "0.38.2"
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" }

Sources/FigmaExport/FigmaExportCommand.swift

Lines changed: 1 addition & 1 deletion
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.1"
35+
static let version = "0.38.2"
3636

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

0 commit comments

Comments
 (0)