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