4 Commits

Author SHA1 Message Date
2a595746d6 fix: typo in the windows builder 2023-08-22 22:18:08 +02:00
6972abc098 fix: forgot to create the /tmp/artifacts directory 2023-08-22 22:12:33 +02:00
d608ff9446 ci: build artifacts 2023-08-22 22:08:01 +02:00
09dbb1cef1 Merge pull request #3 from sern-handler/localization
feat: localization support and spanish translation
2023-08-16 19:58:37 +02:00
2 changed files with 9 additions and 2 deletions

View File

@@ -7,6 +7,10 @@ jobs:
- checkout
- run: yarn
- run: yarn build-electron-win
- run: mkdir /tmp/artifacts
- run: mv -t /tmp/artifacts dist/*.exe
- store_artifacts:
path: /tmp/artifacts
build_linux:
docker:
- image: node:lts
@@ -14,6 +18,10 @@ jobs:
- checkout
- run: yarn
- run: yarn build-electron-linux
- run: mkdir /tmp/artifacts
- 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: {