Skip to content

Commit 5513a3f

Browse files
committed
fix(ci): Remove leading space in ruby/setup-ruby working-directory for Expo sample
The working-directory value had a leading space (' samples/expo') due to an unnecessary ternary expression. Since the step is already guarded by an if condition checking matrix.platform == 'ios', the ternary was redundant. Simplified to the plain path 'samples/expo'.
1 parent e0bd89d commit 5513a3f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/sample-application-expo.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ jobs:
9999
- uses: ruby/setup-ruby@v1
100100
if: ${{ steps.platform-check.outputs.skip != 'true' && matrix.platform == 'ios' }}
101101
with:
102-
working-directory: ${{ matrix.platform == 'ios' && ' samples/expo' }}
102+
working-directory: samples/expo
103103
ruby-version: '3.3.0' # based on what is used in the sample
104104
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
105105
cache-version: 1 # cache the installed gems

0 commit comments

Comments
 (0)