Skip to content

Commit

Permalink
Updated to use GitHub provided temp directory.
Browse files Browse the repository at this point in the history
  • Loading branch information
nickwph committed Mar 22, 2023
1 parent 044062f commit f21ab85
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,8 @@ runs:
- shell: bash
if: ${{ inputs.credentials != null }}
run: |
mkdir .tmp
echo '${{ inputs.credentials }}' > .tmp/credentials.json
echo "GOOGLE_APPLICATION_CREDENTIALS=.tmp/credentials.json" >> $GITHUB_ENV
echo '${{ inputs.credentials }}' > $RUNNER_TEMP/credentials.json
echo "GOOGLE_APPLICATION_CREDENTIALS=$RUNNER_TEMP/credentials.json" >> $GITHUB_ENV
- shell: bash
run: |
curl -sL https://firebase.tools | upgrade=${{ inputs.upgrade }} bash
Expand Down

0 comments on commit f21ab85

Please sign in to comment.