File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed
.github/actions/install-dependencies Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -3,15 +3,19 @@ description: 'Installs yarn depdencies using cache when available'
3
3
runs :
4
4
using : " composite"
5
5
steps :
6
- - name : Get yarn cache directory path
6
+ - name : debug for linux arm
7
+ if : ${{ runner.os == 'Linux' && (runner.arch == 'arm' || runner.arch == 'arm64') }}
7
8
shell : bash
8
- id : yarn-cache-dir-path
9
9
run : |
10
10
which node
11
11
node --version
12
- node src/electron/script/yarn cache dir > yarn-cache-dir.txt
13
12
ls -la /home/runner/actions-runner/cached/externals
14
13
ls -la /home/runner/actions-runner/cached/externals/node20/bin/node
14
+ - name : Get yarn cache directory path
15
+ shell : bash
16
+ id : yarn-cache-dir-path
17
+ run : |
18
+ node src/electron/script/yarn cache dir > yarn-cache-dir.txt
15
19
cat yarn-cache-dir.txt
16
20
export YARN_CACHE_DIR=$(cat yarn-cache-dir.txt)
17
21
echo "dir=$YARN_CACHE_DIR" >> $GITHUB_OUTPUT
You can’t perform that action at this time.
0 commit comments