@@ -410,7 +410,8 @@ jobs:
410
410
uses : actions/cache/restore@v4
411
411
with :
412
412
key : ${{ env.BUILD_PROFILING_NODE_CACHE_TARBALL_KEY }}
413
- path : ${{ github.workspace }}/packages/*/*.tgz
413
+ path : ${{ github.workspace }}/packages/profiling-node/*.tgz
414
+ fail-on-cache-miss : true
414
415
415
416
- name : Archive artifacts
416
417
uses : actions/upload-artifact@v4
@@ -1014,7 +1015,7 @@ jobs:
1014
1015
- name : Stores tarballs in cache
1015
1016
uses : actions/cache/save@v4
1016
1017
with :
1017
- path : ${{ github.workspace }}/packages/* /*.tgz
1018
+ path : ${{ github.workspace }}/packages/profiling-node /*.tgz
1018
1019
key : ${{ env.BUILD_PROFILING_NODE_CACHE_TARBALL_KEY }}
1019
1020
1020
1021
job_e2e_tests :
@@ -1107,12 +1108,6 @@ jobs:
1107
1108
env :
1108
1109
DEPENDENCY_CACHE_KEY : ${{ needs.job_build.outputs.dependency_cache_key }}
1109
1110
1110
- - name : Restore tarball cache
1111
- uses : actions/cache/restore@v4
1112
- with :
1113
- path : ${{ github.workspace }}/packages/*/*.tgz
1114
- key : ${{ env.BUILD_PROFILING_NODE_CACHE_TARBALL_KEY }}
1115
-
1116
1111
- name : Get node version
1117
1112
id : versions
1118
1113
run : |
@@ -1202,13 +1197,13 @@ jobs:
1202
1197
with :
1203
1198
name : profiling-node-binaries-${{ github.sha }}
1204
1199
path : ${{ github.workspace }}/packages/profiling-node/lib/
1205
- - name : Build Profiling tarball
1206
- run : yarn build:tarball --scope @sentry/profiling-node
1200
+
1207
1201
- name : Restore tarball cache
1208
1202
uses : actions/cache/restore@v4
1209
1203
with :
1210
- path : ${{ github.workspace }}/packages/* /*.tgz
1204
+ path : ${{ github.workspace }}/packages/profiling-node /*.tgz
1211
1205
key : ${{ env.BUILD_PROFILING_NODE_CACHE_TARBALL_KEY }}
1206
+ fail-on-cache-miss : true
1212
1207
1213
1208
- name : Get node version
1214
1209
id : versions
0 commit comments