2727 uses : ./.github/actions/daemon-setup
2828 with :
2929 daemon : ${{ matrix.app }}
30- node_version : 20.10.0
3130 - name : Setup signing
3231 env :
3332 APPLE_CERT_ID : ${{ secrets.APPLE_CERT_ID }}
7473 timeout_minutes : 30
7574 retry_wait_seconds : 30
7675 command : |
77- cd ${{ matrix.app }}
78- npm run download:binary -- --goos=darwin --goarch=${{ matrix.arch }}
76+ npm run download:binary -- --daemon=${{ matrix.app }} --goos=darwin --goarch=${{ matrix.arch }}
7977 # Retry because macos notarization is often flakey and fails.
8078 - name : Package executable bundles, sign and notarize, make distributables
8179 uses : nick-fields/retry@v3
@@ -111,7 +109,6 @@ jobs:
111109 uses : ./.github/actions/daemon-setup
112110 with :
113111 daemon : ${{ matrix.app }}
114- node_version : 20.10.0
115112 - name : Lint
116113 run : npm run lint
117114 shell : bash
@@ -127,8 +124,7 @@ jobs:
127124 timeout_minutes : 30
128125 retry_wait_seconds : 30
129126 command : |
130- cd ${{ matrix.app }}
131- npm run download:binary -- --goos=linux --goarch=${{ matrix.arch }}
127+ npm run download:binary -- --daemon=${{ matrix.app }} --goos=linux --goarch=${{ matrix.arch }}
132128 - name : Package executable bundles, make distributables
133129 run : |
134130 APP_ARCH=${{ matrix.arch }}
@@ -153,7 +149,6 @@ jobs:
153149 uses : ./.github/actions/daemon-setup
154150 with :
155151 daemon : ${{ matrix.app }}
156- node_version : 20.10.0
157152 - name : Setup signing
158153 run : dotnet tool install --global AzureSignTool
159154 - name : Lint
@@ -171,8 +166,7 @@ jobs:
171166 timeout_minutes : 30
172167 retry_wait_seconds : 30
173168 command : |
174- cd ${{ matrix.app }}
175- npm run download:binary -- --goos=windows --goarch=amd64
169+ npm run download:binary -- --daemon=${{ matrix.app }} --goos=windows --goarch=amd64
176170 - name : Package executable bundles, sign and notarize, make distributables
177171 run : npm run make -- --arch=x64
178172 shell : bash
0 commit comments