Skip to content

Commit

Permalink
fix(circle): change project workspace dir
Browse files Browse the repository at this point in the history
  • Loading branch information
shanejonas committed Jun 20, 2019
1 parent c9c1730 commit 09f9a5a
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,10 @@ jobs:
- image: circleci/node:10
steps:
- attach_workspace:
at: /project
at: ~/project
- checkout
- restore_cache: *restore-deps-cache
- run: ls /project
- run: cp /project dist
- run: ls
- 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 +68,7 @@ jobs:
- run: npm install
- run: npm run electron:build -- --win --ia32
- persist_to_workspace:
root: /project
root: ~/project
paths:
- dist/*

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

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

Expand Down

0 comments on commit 09f9a5a

Please sign in to comment.