wzieba / Firebase-Distribution-Github-Action

This action uploads artifacts (.apk or .ipa) to Firebase App Distribution.
MIT License
368 stars 77 forks source link

Failed to authenticate, have you run firebase login? #94

Closed CodemenschenAndroid closed 1 year ago

CodemenschenAndroid commented 1 year ago

I don't know why i am getting this error,

Here is my action file.

name: Deploy Application to Firebase App Distribution
on: [push, pull_request, workflow_dispatch]
jobs:
  run:
    runs-on: ubuntu-latest
    environment:
      name: qus
    steps:
      - uses: actions/checkout@v1
      - name: Upload artifact to Firebase Distribution using credential file content
        uses: wzieba/Firebase-Distribution-Github-Action@v1
        with:
          appId: ${{secrets.FIREBASE_APP_ID}}
          groups: testers
          releaseNotesFile: README.md
          file: app/release/QusSports-Mobile-App-release.apk
          serviceCredentialsFileContent: ${{ secrets.CREDENTIAL_FILE_CONTENT }}

image

CodemenschenAndroid commented 1 year ago

Any update ?

wzieba commented 1 year ago

Your configuration seems to be invalid. Please follow the guide carefully. The action appears to work fine.

If it still doesn't work for you, please prepare a minimal reproduction example with the issue you're experiencing.