diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index a02678a..244a270 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -8,7 +8,7 @@ on: jobs: build-and-upload-app: name: Build and upload iOS app - runs-on: ubuntu-latest + runs-on: macos-latest steps: - uses: actions/checkout@v4 - name: Set up Node @@ -24,7 +24,10 @@ jobs: expo-cache: true token: ${{secrets.EXPO_TOKEN}} - run: npm install - - run: eas build -p ios --non-interactive - - run: eas submit -p ios --latest --profile production --non-interactive - env: - EXPO_APPLE_PASSWORD: ${{secrets.EXPO_APPLE_PASSWORD}} + - run: eas build --profile development --platform ios --non-interactive --local + - name: Upload binary as artifact + uses: actions/upload-artifact@v4 + with: + name: binary + path: ${{ github.workspace }}/*.ipa + retention-days: 30