Skip to content

Commit 0a15a37

Browse files
authored
fix: ci artifact paths (#301)
1 parent 9698d9a commit 0a15a37

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.circleci/config.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: 2
22

33
defaults: &defaults
4-
working_directory: ~/repo
4+
working_directory: ~/project
55
docker:
66
- image: circleci/node:8.10-browsers
77

@@ -20,14 +20,14 @@ jobs:
2020
- store_artifacts:
2121
path: tmp/artifacts
2222
- persist_to_workspace:
23-
root: ~/repo
23+
root: ~/project
2424
paths: .
2525

2626
test-web:
2727
<<: *defaults
2828
steps:
2929
- attach_workspace:
30-
at: ~/repo
30+
at: ~/project
3131
- checkout
3232
- run: 'yarn install'
3333
- run: 'yarn add karma-cli --dev'
@@ -38,10 +38,10 @@ jobs:
3838
<<: *defaults
3939
steps:
4040
- attach_workspace:
41-
at: ~/repo
41+
at: ~/project
4242
- run:
4343
name: Authenticate with registry
44-
command: echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > ~/repo/.npmrc
44+
command: echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > ~/project/.npmrc
4545
- run:
4646
name: Publish package
4747
command: npm publish --access public

0 commit comments

Comments
 (0)