3 Commits
v1.2 ... v1.0.1

Author SHA1 Message Date
90868221b5 add back for build platforms 2020-09-26 12:46:47 +07:00
327bf355fc add publish never 2020-09-26 12:41:21 +07:00
b999578e21 updated github flow only windows 2020-09-26 12:33:40 +07:00
2 changed files with 7 additions and 6 deletions

View File

@@ -9,6 +9,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
# os: [windows-latest]
steps:
- name: Starting Context
@@ -29,11 +30,11 @@ jobs:
- name: Publish
run: |
yarn run dist
# - name: Cleanup artifacts Linux and macOS
# if: matrix.os != 'windows-latest'
# run: |
# mkdir artifacts
# cp -R dist/{*.deb,*.dmg,*.AppImage} artifacts || true
- name: Cleanup artifacts Linux and macOS
if: matrix.os != 'windows-latest'
run: |
mkdir artifacts
cp -R dist/{*.deb,*.dmg,*.AppImage} artifacts || true
- name: Cleanup artifacts Windowns
if: matrix.os == 'windows-latest'
run: |

View File

@@ -26,7 +26,7 @@
"postinstall": "electron-builder install-app-deps",
"start": "yarn && cross-env DR_URL=https://clinic.cubetiqs.com?platform=desktop electron ./main",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"dist": "electron-builder --publish never",
"builder-help": "electron-builder --help",
"test": "echo \"Error: no test specified\" && exit 1"
},