Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/build-installers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -177,9 +177,9 @@ jobs:

- name: Install sharp and generate .icns icon
run: |
npm install --no-package-lock --ignore-scripts sharp
npm rebuild sharp
node -e "
mkdir -p /tmp/sharp-tool && cd /tmp/sharp-tool && npm init -y > /dev/null 2>&1 && npm install sharp
cd $GITHUB_WORKSPACE
NODE_PATH=/tmp/sharp-tool/node_modules node -e "
const sharp = require('sharp');
const fs = require('fs');
const src = 'ui/public/mayrito-face.png';
Expand Down Expand Up @@ -239,9 +239,9 @@ jobs:

- name: Install sharp and generate .icns
run: |
npm install --no-package-lock --ignore-scripts sharp
npm rebuild sharp
node -e "
mkdir -p /tmp/sharp-tool && cd /tmp/sharp-tool && npm init -y > /dev/null 2>&1 && npm install sharp
cd $GITHUB_WORKSPACE
NODE_PATH=/tmp/sharp-tool/node_modules node -e "
const sharp = require('sharp');
const fs = require('fs');
const src = 'ui/public/mayrito-face.png';
Expand Down
Loading