File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -23,10 +23,16 @@ jobs:
23
23
docker :
24
24
- image : circleci/node:8
25
25
environment :
26
- - PATH : ' /opt/yarn/yarn-v1.5.1/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin'
26
+ - PATH : ' ~/bin: /opt/yarn/yarn-v1.5.1/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin'
27
27
steps :
28
28
- attach_workspace :
29
29
at : .
30
+ - run :
31
+ name : Install latest CircleCI CLI
32
+ command : |
33
+ mkdir -p ~/bin
34
+ curl -o ~/bin/circleci https://circle-downloads.s3.amazonaws.com/releases/build_agent_wrapper/circleci
35
+ chmod +x ~/bin/circleci
30
36
- restore_cache :
31
37
key : yarn-cache-{{ arch }}-{{ checksum "package.json" }}-{{ checksum "yarn.lock" }}-{{ .Environment.CACHE_VERSION }}
32
38
- run :
42
48
mkdir -p ~/.ssh
43
49
echo 'github.com ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyCOV0wzfjIJNlGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal72J+UX2B+2RPW3RcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ==' >> ~/.ssh/known_hosts
44
50
- run :
45
- name : Publish to NPM
51
+ name : Publish to CircleCI Orb Registry
46
52
command : yarn semantic-release
47
53
48
54
workflows :
You can’t perform that action at this time.
0 commit comments