We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6e5f1f commit afd6ae4Copy full SHA for afd6ae4
.github/workflows/ci.yml
@@ -15,7 +15,7 @@ jobs:
15
- uses: actions/cache@v1
16
id: cache
17
with:
18
- path: ${{ env.HOME }}/.cache
+ path: ~/.cache
19
key: ${{ runner.os }}-firebase-cli
20
- name: Set up Python ${{ matrix.python }}
21
uses: actions/setup-python@v1
@@ -34,8 +34,7 @@ jobs:
34
- name: Set up CLI
35
if: steps.cache.outputs.cache-hit != 'true'
36
run: |
37
- echo Home directory is $HOME
38
- curl -o ${HOME}/.cache/bin/firebase --create-dirs -L https://firebase.tools/bin/linux/latest
+ curl -o ${HOME}/.cache/bin/firebase --create-dirs -sL https://firebase.tools/bin/linux/latest
39
chmod +x ${HOME}/.cache/bin/firebase
40
- name: Add Firebase to path
41
run: echo "::add-path::${HOME}/.cache/bin"
0 commit comments