ci: build artifacts

This commit is contained in:
2023-08-22 22:08:01 +02:00
parent 09dbb1cef1
commit d608ff9446
2 changed files with 7 additions and 2 deletions

View File

@@ -7,6 +7,9 @@ jobs:
- checkout
- run: yarn
- run: yarn build-electron-win
- run: mv -t /tmp/artifact dist/*.exe
- store_artifacts:
path: /tmp/artifacts
build_linux:
docker:
- image: node:lts
@@ -14,6 +17,9 @@ jobs:
- checkout
- run: yarn
- run: yarn build-electron-linux
- run: mv -t /tmp/artifacts dist/*.snap dist/*.AppImage
- store_artifacts:
path: /tmp/artifacts
workflows:
build:

View File

@@ -13,8 +13,7 @@ module.exports = {
parserOptions: {
ecmaVersion: 'latest',
sourceType: 'module',
tsconfigRootDir: __dirname,
project: '.swcrc'
tsconfigRootDir: __dirname
},
plugins: ['react-refresh'],
rules: {