Skip to content

Commit

Permalink
build: rework ruby version in ci + v0.1.1 (#32)
Browse files Browse the repository at this point in the history
* build: rework ruby version in ci + v0.1.1

* chore: CI uses older ruby version
  • Loading branch information
iBotPeaches authored Jan 31, 2025
1 parent 6935847 commit 3d878e8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 18 deletions.
9 changes: 2 additions & 7 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,11 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: actions/cache@v4
with:
path: vendor/bundle
key: ${{ runner.os }}-gem-${{ hashFiles('**/Gemfile') }}
restore-keys: ${{ runner.os }}-gem-

- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7
bundler-cache: true
ruby-version: ruby

- name: Install dependencies
run: bundle check || bundle install --jobs=4 --retry=3 --path vendor/bundle
Expand Down
12 changes: 2 additions & 10 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,11 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: actions/cache@v4
with:
path: vendor/bundle
key: ${{ runner.os }}-gem-${{ hashFiles('**/Gemfile') }}
restore-keys: ${{ runner.os }}-gem-

- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7

- name: Install dependencies
run: bundle check || bundle install --jobs=4 --retry=3 --path vendor/bundle
bundler-cache: true
ruby-version: 2.7.7

- name: Run tests
run: bundle exec rake
Expand Down
2 changes: 1 addition & 1 deletion lib/fastlane/plugin/maestro_orchestration/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Fastlane
module MaestroOrchestration
VERSION = "0.1.0"
VERSION = "0.1.1"
end
end

0 comments on commit 3d878e8

Please sign in to comment.