w9jds / firebase-action

GitHub Action for interacting with Firebase
MIT License
922 stars 198 forks source link

Pulling @master results in error. is 12.9.0 out? #207

Closed MartinSandstromRimsbo closed 10 months ago

MartinSandstromRimsbo commented 10 months ago

My github action just stopped working, I have made no changes.

Error:

/usr/bin/docker pull w9jds/firebase-action:v12.9.0 Error response from daemon: manifest for w9jds/firebase-action:v12.9.0 not found: manifest unknown: manifest unknown Warning: Docker pull failed with exit code 1, back off 8.634 seconds before retry. /usr/bin/docker pull w9jds/firebase-action:v12.9.0 Error response from daemon: manifest for w9jds/firebase-action:v12.9.0 not found: manifest unknown: manifest unknown

Error: Docker pull failed with exit code 1

Any ideas?

maylorsan commented 10 months ago

same issue

zilker commented 10 months ago

The same thing happened to me.

irmakcosarsahna commented 10 months ago

same issue

javibrico commented 10 months ago

same issue

Agusnez commented 10 months ago

Same issue in our team. Looks like the 12.9 version is not listed as a release, but the PR was merged an hour ago, so maybe they are tagging it already but takes time for the change to propagate.

In the meantime pulling the 12.8 version instead of master will do the trick!

waylun commented 10 months ago

same issue

peter-palmer commented 10 months ago

I'm getting the same issue šŸ‘€

peter-palmer commented 10 months ago

Hello everyone,

I've come across a temporary solution for the issue we've been experiencing with the w9jds/firebase-action when trying to deploy functions to Firebase using GitHub Actions.

After encountering errors with the latest version and the version v12.9.0 not being found, I've successfully used version v12.8.0. It seems this version is stable and works as expected for the time being. Here's the updated workflow configuration:

# Deploying the functions to Firebase
- name: Deploy to Firebase
  uses: w9jds/firebase-action@v12.8.0
  with:
    args: deploy --only functions
  env:
    FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }}

This configuration has worked in my case. If you're facing similar issues, you might want to give this a try. Remember to adjust your workflow file accordingly.

Make sure to include the ā€˜vā€™ in your version specification to avoid errors. This configuration has successfully resolved the deployment issues in my projects.

Also, it's always a good idea to keep an eye on the repository for any official fixes or updates. Let's hope for a permanent solution soon.

Hovmark commented 10 months ago

Same issue here

elmehdibm commented 10 months ago

Same issue here

btryder commented 10 months ago

yup master pull failed for me, used the suggested pinning to 12.8.0

isomorpheric commented 10 months ago

Same issue - pinned 12.8.0

tudorsibiu90 commented 10 months ago

tag seems to be missing :P

xephtar commented 10 months ago

Same issue here, back to 12.8.0 tag

irmakcosarsahna commented 10 months ago

Same issue in our team. Looks like the 12.9 version is not listed as a release, but the PR was merged an hour ago, so maybe they are tagging it already but takes time for the change to propagate.

In the meantime pulling the 12.8 version instead of master will do the trick!

Thanks it worked.

w9jds commented 10 months ago

The tag should be properly built now, apologies for the issue. This is one of the reasons I was trying to move away from the docker actions. šŸ˜…

Psycarlo commented 8 months ago

@w9jds Any news on firestore:rules and storage not deploying?

uses: w9jds/firebase-action@master
        with:
          args: deploy --only functions,firestore:rules,firestore:indexes,storage