Skip to content

Commit

Permalink
0.38.1
Browse files Browse the repository at this point in the history
  • Loading branch information
subdan committed Jan 25, 2025
1 parent cca6687 commit 154b34e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand All @@ -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 }}

Expand Down
3 changes: 2 additions & 1 deletion FigmaExport.podspec
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
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" }
spec.author = { "Daniil Subbotin" => "mail@subdan.ru" }
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
2 changes: 1 addition & 1 deletion Sources/FigmaExport/FigmaExportCommand.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 154b34e

Please sign in to comment.