make sure mac ipfs executable is executable

This commit is contained in:
Esteban Abaroa
2023-08-11 19:52:34 +00:00
parent 314963c805
commit fb293b2e94
+3 -1
View File
@@ -20,7 +20,7 @@ jobs:
with: with:
node-version: 16 node-version: 16
- run: yarn install --frozen-lockfile - run: yarn install --frozen-lockfile
# make sure the ipfs executable is executable (linux only) # make sure the ipfs executable is executable
- run: node electron/downloadIpfs && sudo chmod +x bin/linux/ipfs - run: node electron/downloadIpfs && sudo chmod +x bin/linux/ipfs
- run: CI='' yarn build - run: CI='' yarn build
- run: yarn electron:build:linux - run: yarn electron:build:linux
@@ -46,6 +46,8 @@ jobs:
with: with:
node-version: 16 node-version: 16
- run: yarn install --frozen-lockfile - run: yarn install --frozen-lockfile
# make sure the ipfs executable is executable
- run: node electron/downloadIpfs && sudo chmod +x bin/mac/ipfs
- run: CI='' yarn build - run: CI='' yarn build
- run: yarn electron:build:mac - run: yarn electron:build:mac
- run: ls dist - run: ls dist