fix: forgot to create the /tmp/artifacts directory

This commit is contained in:
2023-08-22 22:12:33 +02:00
parent d608ff9446
commit 6972abc098

View File

@@ -7,6 +7,7 @@ jobs:
- checkout
- run: yarn
- run: yarn build-electron-win
- run: mkdir /tmp/artifacts
- run: mv -t /tmp/artifact dist/*.exe
- store_artifacts:
path: /tmp/artifacts
@@ -17,6 +18,7 @@ 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