Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 7 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,6 @@ jobs:
run: |
gem install bundler
bundle install --without=documentation
- name: Swift
uses: swift-actions/setup-swift@v2
with:
swift-version: "5.9"
- name: Preparation
run: set -o pipefail
- name: Build
Expand All @@ -50,19 +46,22 @@ jobs:
linux:
name: Linux
runs-on: ubuntu-22.04
container:
image: swift:5.9
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: |
apt-get update
apt-get install -y build-essential libyaml-dev libffi-dev curl
- name: Ruby
uses: ruby/setup-ruby@v1
- name: Bundler
run: |
gem install bundler
bundle install --without=documentation
- name: Swift
uses: swift-actions/setup-swift@v2
with:
swift-version: "5.9"
- name: Preparation
shell: bash
run: set -o pipefail
- name: Build
run: make build
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PREFIX?=/usr/local

PRODUCT_NAME=figmagen
PRODUCT_VERSION=2.0.0-beta.25
PRODUCT_VERSION=2.0.0-beta.26
TEMPLATES_NAME=Templates
README_NAME=README.md
LICENSE_NAME=LICENSE
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Currently, FigmaGen supports the following entities:
### CocoaPods
To install FigmaGen using [CocoaPods](http://cocoapods.org) dependency manager, add this line to your `Podfile`:
```ruby
pod 'FigmaGen', '~> 2.0.0-beta.25'
pod 'FigmaGen', '~> 2.0.0-beta.26'
```

Then run this command:
Expand Down Expand Up @@ -73,7 +73,7 @@ $ brew install hhru/tap/figmagen
For [Mint](https://github.com/yonaskolb/mint) package manager installation, run:

```sh
$ mint install hhru/FigmaGen@2.0.0-beta.25
$ mint install hhru/FigmaGen@2.0.0-beta.26
```

### ZIP archive
Expand Down
2 changes: 1 addition & 1 deletion Sources/FigmaGen/main.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import PathKit
Path.current = Path(#file).appending("../../../Demo")
#endif

let version = "2.0.0-beta.25"
let version = "2.0.0-beta.26"
let logger = Logger()

let figmagen = CLI(
Expand Down
Loading