File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -46,15 +46,15 @@ jobs:
46
46
cache : ' yarn'
47
47
48
48
- name : Install Yarn
49
- run : npm install -g yarn
49
+ run : npm install -g yarn@1.22.4
50
50
51
51
- name : Install Sentry CLI
52
52
run : yarn global add @sentry/cli
53
53
54
54
- name : Get Package Version
55
55
id : package_version
56
56
shell : bash
57
- run : echo "PACKAGE_VERSION=$(node -p -e "require('./electron/package.json').version")" >> $GITHUB_ENV
57
+ run : echo "PACKAGE_VERSION=$(node -p -e \ "require('./electron/package.json').version\ ")" >> $GITHUB_ENV
58
58
59
59
- name : Setup Sentry Release
60
60
if : matrix.os == 'ubuntu-latest'
@@ -68,13 +68,13 @@ jobs:
68
68
- name : Install Dependencies (Electron)
69
69
run : |
70
70
cd electron
71
- yarn install
71
+ yarn install --ignore-optional
72
72
cd ..
73
73
74
74
- name : Install Dependencies (Client)
75
75
run : |
76
76
cd client
77
- yarn install
77
+ yarn install --ignore-optional
78
78
cd ..
79
79
80
80
- name : Build Client
You can’t perform that action at this time.
0 commit comments