Skip to content

Commit 9a20dbc

Browse files
committed
chore: action run fix
1 parent 8830ead commit 9a20dbc

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

Gemfile.lock

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,8 @@ GEM
134134
racc (~> 1.4)
135135
nokogiri (1.13.3-x86_64-darwin)
136136
racc (~> 1.4)
137+
nokogiri (1.13.3-x86_64-linux)
138+
racc (~> 1.4)
137139
oauth2 (1.4.9)
138140
faraday (>= 0.17.3, < 3.0)
139141
jwt (>= 1.0, < 3.0)

Rakefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,16 @@ end
1111

1212
desc 'Setup example project'
1313
task :demo do
14+
deployment = Bundler.settings['DEPLOYMENT'] || false
15+
Bundler.settings.set_local('DEPLOYMENT', false) if deployment
1416
system('bundle install', exception: true)
1517
Bundler.with_unbundled_env do
1618
Dir.chdir('example/ios_app') do |path|
1719
system('bundle install', exception: true)
1820
system('bundle exec pod install', exception: true)
1921
end
2022
end
23+
Bundler.settings.set_local('DEPLOYMENT', deployment) if deployment
2124
end
2225

2326
desc 'Publish to cocoapods plugins if not present'

0 commit comments

Comments
 (0)