yukiarrr / ios-build-action

Build iOS project (.xcodeproj, .xcworkspace), and export ipa
MIT License
279 stars 135 forks source link

ipa validation to upload failed #118

Open amikha33 opened 8 months ago

amikha33 commented 8 months ago

Hello when i run task to install certificate as following it pass

      - uses: apple-actions/import-codesign-certs@v1
        with:
          keychain: ${{ env.KEYCHAIN }}
          p12-file-base64: ${{ secrets.P12_BASE64 }}
          p12-password: ${{ secrets.P12_PASSWORD }}

but when i run the validation to upload ipa it fails

      - name: Validate iOS App
        run: |
          xcrun altool --validate-app -f build/ios/ipa/*.ipa \
            -t ios --apiKey ${{ secrets.APPSTORE_API_KEY_ID }} --apiIssuer ${{ secrets.APPSTORE_ISSUER_ID }}