From 6972abc09808b31787abf702fba1b7d36604491f Mon Sep 17 00:00:00 2001 From: SrIzan10 <66965250+SrIzan10@users.noreply.github.com> Date: Tue, 22 Aug 2023 22:12:33 +0200 Subject: [PATCH] fix: forgot to create the /tmp/artifacts directory --- .circleci/config.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 2bc258f..fe8f8c1 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -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