Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
wzieba committed Sep 16, 2023
1 parent be57df6 commit 5e8bb34
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@ jobs:
groups: Testers
file: ApiDemos-debug.apk
- name: Print all outputs of previous step
run: ${{join(steps.testing_outputs.outputs.*, '\n')}}
run: |
echo ${{steps.testing_outputs.outputs.FIREBASE_CONSOLE_URI}}
echo ${{steps.testing_outputs.outputs.TESTING_URI}}
echo ${{steps.testing_outputs.outputs.BINARY_DOWNLOAD_URI}}
- name: Upload artifact to Firebase Distribution with release note file
uses: ./
with:
Expand Down
10 changes: 5 additions & 5 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,10 @@ firebase \
fi
done

# if firebase deploy failed, return error
if [ $? -ne 0 ]; then
exit 1
fi

}

# if firebase deploy failed, return error
if [ $? -ne 0 ]; then
exit 1
fi

0 comments on commit 5e8bb34

Please sign in to comment.