Skip to content

Commit fb67fa4

Browse files
committed
fix cache
1 parent 3206883 commit fb67fa4

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/dataconnect_demo_app.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242

4343
- name: Create Cache Key Files
4444
run: |
45-
echo "x366vcw7mg" >github_actions_demo_test_cache_key.txt
45+
echo "gmagjr2b9d" >github_actions_demo_test_cache_key.txt
4646
echo "${{ env.FDC_FIREBASE_TOOLS_VERSION }}" >github_actions_demo_assemble_firebase_tools_version.txt
4747
4848
- uses: actions/setup-node@v3
@@ -57,7 +57,7 @@ jobs:
5757
id: package_json_lock
5858
uses: actions/cache@v4
5959
with:
60-
path: firebase-dataconnect/demo/firebase-tools/package*.json
60+
path: ${{ env.FDC_FIREBASE_TOOLS_DIR }}/package*.json
6161
key: firebase_tools_package_json-${{ env.FDC_FIREBASE_TOOLS_VERSION }}
6262

6363
- name: install firebase-tools from scratch
@@ -72,7 +72,7 @@ jobs:
7272
- name: install firebase-tools from package-lock.json
7373
if: steps.package_json_lock.outputs.cache-hit == 'true'
7474
run: |
75-
cd firebase-tools
75+
cd ${{ env.FDC_FIREBASE_TOOLS_DIR }}
7676
npm ci --fund=false --audit=false
7777
7878
- uses: actions/setup-java@v4
@@ -96,7 +96,6 @@ jobs:
9696
javac -version
9797
which node
9898
node --version
99-
which firebase
10099
${{ env.FDC_FIREBASE_COMMAND }} --version
101100
./gradlew --version
102101

0 commit comments

Comments
 (0)