Open piggy-park opened 1 year ago
Recently i've updated xcode version to 15.0 and i faced this error
So i added update fastlane code, it worked What i curious is this code is necessary? Because it works without it
- uses: ruby/setup-ruby@v1 with: ruby-version: '3.0' bundler-cache: true
i've really confused because of this sentence from readme anyone using this action should set the bundler-cache parameter of the ruby/setup-ruby step to true (see [Example Usage](https://github.com/maierj/fastlane-action#example-usage)).
anyone using this action should set the bundler-cache parameter of the ruby/setup-ruby step to true (see [Example Usage](https://github.com/maierj/fastlane-action#example-usage)).
runs: runs: using: "composite" steps: - name: bundle lock add platform shell: bash run: | bundle lock --add-platform x86_64-darwin-20 - uses: ruby/setup-ruby@v1 with: ruby-version: '3.0' bundler-cache: true - uses: maierj/fastlane-action@v3.0.0 with: lane: 'flight'
- name: bundle lock add platform shell: bash run: | bundle lock --add-platform x86_64-darwin-20 - name: update fastlane shell: bash run: | bundle update fastlane bundle exec fastlane update_plugins - uses: ruby/setup-ruby@v1 with: ruby-version: '3.0' bundler-cache: true - uses: maierj/fastlane-action@v3.0.0 with: lane: 'flight' verbose: true
- name: bundle lock add platform shell: bash run: | bundle lock --add-platform x86_64-darwin-20 - name: update fastlane shell: bash run: | bundle update fastlane bundle exec fastlane update_plugins - uses: maierj/fastlane-action@v3.0.0 with: lane: 'flight' verbose: true
Recently i've updated xcode version to 15.0 and i faced this error
So i added update fastlane code, it worked What i curious is this code is necessary? Because it works without it
i've really confused because of this sentence from readme
anyone using this action should set the bundler-cache parameter of the ruby/setup-ruby step to true (see [Example Usage](https://github.com/maierj/fastlane-action#example-usage)).
will fail
will success
will success