Skip to content

Commit

Permalink
fix: Trying to get the build process right
Browse files Browse the repository at this point in the history
  • Loading branch information
rmevans9 committed Feb 1, 2020
1 parent 0cb2c86 commit f66d7af
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .circleci/config.yml
Expand Up @@ -51,6 +51,12 @@ jobs:
- run:
name: Generate Semantic Release
command: yarn semantic-release
- run:
name: Setup worksapce
command: mkdir -p workspace
- run:
name: Copy everything into the workspace
command: cp -R build workspace/build && cp package.json workspace/package.json
- persist_to_workspace:
root: workspace
paths:
Expand All @@ -63,6 +69,11 @@ jobs:
- image: electronuserland/builder:wine
steps:
- checkout
- attach_workspace:
at: /tmp/workspace
- run:
name: Move Build and Package into the right place
command: mv -R /tmp/workspace/build build && mv /tmp/workspace/package.json package.json
- run:
name: Install dependencies
command: yarn install --ignore-engines
Expand All @@ -80,6 +91,11 @@ jobs:
xcode: "11.3.1"
steps:
- checkout
- attach_workspace:
at: /tmp/workspace
- run:
name: Move Build and Package into the right place
command: mv -R /tmp/workspace/build build && mv /tmp/workspace/package.json package.json
- run:
name: Install dependencies
command: yarn install --ignore-engines
Expand Down

0 comments on commit f66d7af

Please sign in to comment.