Skip to content

Commit

Permalink
fix(ci,ios): gate removing Xcode local env file
Browse files Browse the repository at this point in the history
Signed-off-by: Martin Mazein <internet+github@amazeing.net>
  • Loading branch information
MegaMaddin committed Feb 6, 2024
1 parent d76b827 commit b999ff9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -148,8 +148,10 @@ jobs:

- name: Remove faulty env file
run: |
ls -la example/ios/.xcode.env.local
rm -f example/ios/.xcode.env.local
if [[ -f example/ios/.xcode.env.local ]]; then
cat example/ios/.xcode.env.local
rm -f example/ios/.xcode.env.local
fi
- name: Build example for iOS
run: |
Expand Down

0 comments on commit b999ff9

Please sign in to comment.