diff --git a/action.yaml b/action.yaml index 66a9cf9..fc11e1d 100644 --- a/action.yaml +++ b/action.yaml @@ -12,4 +12,4 @@ outputs: runs: using: 'docker' - image: 'docker://w9jds/firebase-action:v2.2.1' + image: 'docker://w9jds/firebase-action:v2.2.2' diff --git a/entrypoint.sh b/entrypoint.sh index 3a18aa0..9119fa1 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -34,12 +34,14 @@ if [ -n "$CONFIG_VALUES" ]; then firebase functions:config:set "$CONFIG_VALUES" fi -response=$(firebase $*) - -if [ $? -eq 0 ]; then - echo "$response" - exit 0 -else - echo "$response" - exit 1 -fi +sh -c "firebase $*" + +# response=$(firebase $*) + +# if [ $? -eq 0 ]; then +# echo "$response" +# exit 0 +# else +# echo "$response" +# exit 1 +# fi