Skip to content

[BUG] Cannot upload from MacOS #142

Description

@bence-takacs-samlink

Trying to upload an .ipa file from a macos-latest runner, and receive this: "Error: Container action is only supported on Linux"

There is a workaround: I can store the artifact and then retrieve it from a Linux conatiner and call Firebase-Distribution-Github-Action from there

jobs:
  build_with_signing:
    runs-on: macos-latest
    
  # build, compress, sign, etc
  
  - name: Store artifact
     uses: actions/upload-artifact@v4
        with:
          name: distribution-ios-feature
          path: ...
 
  publish-to-firebase:
    needs: build_with_signing
    runs-on: ubuntu-latest
    steps:
    - name: Download the artifact
      uses: actions/download-artifact@v3
      with:
        name: distribution-ios-feature
        path: ...
    - name: upload artifact to Firebase App Distribution
      uses: wzieba/Firebase-Distribution-Github-Action@v1
      with:
        appId: ...
        serviceCredentialsFileContent: ...
        file:  ...

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions