Skip to content

Commit

Permalink
fix: use root /project for workspace
Browse files Browse the repository at this point in the history
  • Loading branch information
shanejonas committed Jun 20, 2019
1 parent 42f4064 commit c9c1730
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,11 @@ jobs:
- image: circleci/node:10
steps:
- attach_workspace:
at: /tmp/project
at: /project
- checkout
- restore_cache: *restore-deps-cache
- run: ls /tmp/project
- run: cp /tmp/project dist
- run: ls /project
- run: cp /project dist
- run: npm install
- run: npm install semantic-release @semantic-release/changelog @semantic-release/git @semantic-release/github @semantic-release/npm @semantic-release/commit-analyzer @semantic-release/release-notes-generator @qiwi/semantic-release-gh-pages-plugin
- run: ./node_modules/.bin/semantic-release --dry-run
Expand All @@ -69,7 +69,7 @@ jobs:
- run: npm install
- run: npm run electron:build -- --win --ia32
- persist_to_workspace:
root: /tmp/project/
root: /project
paths:
- dist/*

Expand All @@ -86,7 +86,7 @@ jobs:
- run: npm install
- run: npm run electron:build
- persist_to_workspace:
root: /tmp/project/
root: /project
paths:
- dist/*

Expand All @@ -103,7 +103,7 @@ jobs:
- run: npm install
- run: npm run electron:build
- persist_to_workspace:
root: /tmp/project/
root: /project
paths:
- dist/*

Expand Down

0 comments on commit c9c1730

Please sign in to comment.