Skip to content

Commit

Permalink
Don’t need bundle exec; remove artifacts for now
Browse files Browse the repository at this point in the history
  • Loading branch information
peterkos committed May 23, 2024
1 parent 5cc210e commit a501b69
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
11 changes: 4 additions & 7 deletions .github/workflows/actions/run_lane/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,9 @@ runs:
steps:
- name: 'Run fastlane'
uses: actions/checkout@v4
- run: bundle exec fastlane ${{ inputs.lane }}
- run: fastlane ${{ inputs.lane }}
shell: sh
env:
MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }}

- name: 'Upload artifacts'
if: ${{ !cancelled() }}
uses: actions/upload-artifact@v4
with:
name: test-output
path: artifacts
# TODO: Artifacts
4 changes: 4 additions & 0 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ default_platform :ios
platform :ios do
before_all do
ENV["FASTLANE_XCODEBUILD_SETTINGS_TIMEOUT"] = "60"
if is_ci
# Creates temp keychain, build could hang if this is not specified
setup_ci
end
end

desc "Runs Unit and UI tests"
Expand Down

0 comments on commit a501b69

Please sign in to comment.