Skip to content

Commit

Permalink
updated workflow to add releases
Browse files Browse the repository at this point in the history
  • Loading branch information
Nigel Jacob authored and Nigel Jacob committed Mar 24, 2024
1 parent b02fa7e commit 56d9631
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 42 deletions.
Binary file modified .DS_Store
Binary file not shown.
2 changes: 2 additions & 0 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
release: ${{ startsWith(github.ref, 'refs/tags/v') }}
- run: yarn
- run: cd Frontend && yarn
- run: cd Backend && yarn
Expand Down Expand Up @@ -52,6 +53,7 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
release: ${{ startsWith(github.ref, 'refs/tags/v') }}
- run: yarn
- run: cd Frontend && yarn
- run: cd Backend && yarn
Expand Down
42 changes: 0 additions & 42 deletions Dockerfile_MAC

This file was deleted.

2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@
"scripts": {
"electron:start": "electron .",
"electron:serve": "cd Frontend && concurrently -k \"cross-env BROWSER=none yarn start\" \"cd ../ && yarn electron:start\"",
"electron:build-mac": "cd Frontend && yarn build && cd .. && electron-builder --mac -c.extraMetadata.main=Electron/main.js",
"electron:build-windows": "cd Frontend && yarn build && cd .. && electron-builder --windows -c.extraMetadata.main=Electron/main.js",
"electron:build": "cd Frontend && yarn build && cd .. && electron-builder -c.extraMetadata.main=Electron/main.js",
"package-mac": "electron-packager . --overwrite --platform=darwin --arch=x64 --icon=assets/icons/mac/icon.icns --prune=true --out=release-builds"
},
Expand Down

0 comments on commit 56d9631

Please sign in to comment.