admin管理员组文章数量:1345113
I have made an Expo app. I am trying to eject from Expo. To do this, I have run the command npx expo prebuild
. This correctly generates the android
directory. However, the ios
directory is not generated.
Through research, I have found that I will need to use a Mac OS machine to generate the ios
directory. However, I don't have access to a Mac OS machine. Is there a different way to generate the ios
directory?
Could I generate the ios
directory using GitHub Actions? How?
I have attempted to use the following .yml file:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: "20"
- name: Install Dependencies
run: npm install
- name: Install Expo CLI
run: npm install -g expo-cli
- name: Run expo prebuild to generate iOS and Android directories
run: npx expo prebuild
- name: Check if ios directory exists
run: |
if [ ! -d "ios" ]; then
echo "iOS directory does not exist!"
exit 1
fi
- name: Check if android directory exists
run: |
if [ ! -d "android" ]; then
echo "Android directory does not exist!"
exit 1
fi
This works. I have added the following lines to the end of the file:
- name: Upload iOS directory as artifact
uses: actions/upload-artifact@v2
with:
name: ios-directory
path: ios/
- name: Upload Android directory as artifact
uses: actions/upload-artifact@v2
with:
name: android-directory
path: android/
This causes the following error in the Set up job
section:
Current runner version: '2.323.0'
Operating System
macOS
14.7.4
23H420
Runner Image
Image: macos-14-arm64
Version: 20250331.1204
Included Software: .1204/images/macos/macos-14-arm64-Readme.md
Image Release: .1204
Runner Image Provisioner
GITHUB_TOKEN Permissions
Contents: read
Metadata: read
Packages: read
Secret source: Actions
Prepare workflow directory
Prepare all required actions
Getting action download info
Download immutable action package 'actions/checkout@v2'
Version: 2.7.0
Digest: sha256:95d28907bc868c0bab52f05f1f84cf8416c9415fba4c92519bc0b83bdce1eae3
Source commit SHA: ee0669bd1cc54295c223e0bb666b733df41de1c5
Download immutable action package 'actions/setup-node@v2'
Version: 2.5.2
Digest: sha256:a8e87bde4bf0e0cb7e65a7900c98100538686fbd712bdd87ab6643ebf7a0a248
Source commit SHA: 7c12f8017d5436eb855f1ed4399f037a36fbd9e8
Error: Missing download info for actions/upload-artifact@v2
本文标签: react nativeexpo prebuild doesn39t generate ios directoryStack Overflow
版权声明:本文标题:react native - expo prebuild doesn't generate ios directory - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743766328a2535295.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论