Giter Club home page Giter Club logo

Comments (3)

wzieba avatar wzieba commented on August 22, 2024

I believe that the problem is with specifying the path to Runner.ipa at the very bottom of the configuration. Shouldn't it be ios-build/Runner.ipa ?

I'll close this issue as it's not a bug in action but feel free to comment if updating path worked for you.

from firebase-distribution-github-action.

moweb-Vaidehi avatar moweb-Vaidehi commented on August 22, 2024

I am also getting the same error
Error: failed to upload release. There's been an error parsing your app's provisioning profile. Ensure you are uploading a validly signed IPA and try again.

here is my code:

`
name: IOS

on:
pull_request:
branches:
- master

jobs:
flutter_test:
name: Run Flutter Test and analyze
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
- run: flutter pub get
- run: flutter analyze
- run: flutter test

build_ios:
name: Build Flutter(ios)
needs: [flutter_test]
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
- run: flutter pub get
- run: flutter clean
- run: |
flutter build ios --no-codesign
cd build/ios/iphoneos
mkdir Payload
cd Payload
ln -s ../Runner.app
cd ..
zip -r app.ipa Payload
- name: Upload IPA artifact
uses: actions/upload-artifact@v2
with:
name: MyApp-iOS
path: build/ios/iphoneos/app.ipa

distribute-ios:
needs: build_ios # This is important
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Download Artifact
uses: actions/download-artifact@v2
with:
name: MyApp-iOS
path: .
- name: Upload to Firebase App Distribution
uses: wzieba/Firebase-Distribution-Github-Action@v1
with:
appId: ${{secrets.FIREBASE_IOS_ID}}
token: ${{secrets.FIREBASE_TOKEN}}
groups: testers
file: /home/runner/work/flutter_github_action/flutter_github_action/app.ipa

`

from firebase-distribution-github-action.

adamgasiorek avatar adamgasiorek commented on August 22, 2024

I have the same error, please @wzieba reopen this.

from firebase-distribution-github-action.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.