Skip to content

Commit 5b7605c

Browse files
committed
debug
1 parent 130d5cf commit 5b7605c

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/actions/install-dependencies/action.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,19 @@ description: 'Installs yarn depdencies using cache when available'
33
runs:
44
using: "composite"
55
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') }}
78
shell: bash
8-
id: yarn-cache-dir-path
99
run: |
1010
which node
1111
node --version
12-
node src/electron/script/yarn cache dir > yarn-cache-dir.txt
1312
ls -la /home/runner/actions-runner/cached/externals
1413
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
1519
cat yarn-cache-dir.txt
1620
export YARN_CACHE_DIR=$(cat yarn-cache-dir.txt)
1721
echo "dir=$YARN_CACHE_DIR" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)