-
Notifications
You must be signed in to change notification settings - Fork 77
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
[Feature request]mac support #24
Comments
Docker-based actions are not supported on MacOS, check the documentation for more: https://docs.github.com/en/actions/creating-actions/about-actions#docker-container-actions I do not plan to make this action JavaScript-based. |
If there are someone who like me didn't know how to upload an IPA at first, here's how you do it, based on this #13 (comment)
jobs:
build-ios:
runs-on: macos-latest
steps:
# build here
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: YourApp.ipa
path: YourApp.ipa # Path to your IPA file will usually be root of the project (if you use Fastlane)
distribute-ios:
needs: build-ios # This is important
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/download-artifact@v2
with:
name: YourApp.ipa
- name: Upload artifact to Firebase App Distribution
uses: wzieba/Firebase-Distribution-Github-Action@v1
with:
appId: ${{secrets.FIREBASE_IOS_APP_ID}}
file: YourApp.ipa
groups: testers
token: ${{secrets.FIREBASE_TOKEN}} |
@wzieba thanks for this information, is this still the case now (Aug 2021)? Just curious... thanks for the great action btw |
…roid and iOS apps, the second deploy those builds into FAB wzieba/Firebase-Distribution-Github-Action#24
…roid and iOS apps, the second deploy those builds into FAB wzieba/Firebase-Distribution-Github-Action#24
…roid and iOS apps, the second deploy those builds into FAB wzieba/Firebase-Distribution-Github-Action#24
@demchenkoalex I tried to upload & download my ipa file (around more than 20mb) by using upload&download-artifact action as your suggestion. But when upload to firebase distribution I always get the error below: |
Hi @mvn-tony-hn sorry it was 1.5 years ago, and I changed jobs and never used this commercially anymore, so I am not up to date 😞 |
https://github.com/nickwph/firebase-app-distribution-action |
The text was updated successfully, but these errors were encountered: