We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe47458 commit f1520f3Copy full SHA for f1520f3
.circleci/config.yml
@@ -4,6 +4,25 @@
4
#
5
version: 2
6
jobs:
7
+ deploy:
8
+ docker:
9
+ # specify the version you desire here
10
+ - image: circleci/node:8.11.2
11
+
12
+ # Specify service dependencies here if necessary
13
+ # CircleCI maintains a library of pre-built images
14
+ # documented at https://circleci.com/docs/2.0/circleci-images/
15
+ # - image: circleci/mongo:3.4.4
16
+ working_directory: ~/repo
17
+ steps:
18
+ - attach_workspace:
19
+ at: ~/repo
20
+ - run:
21
+ name: Authenticate with registry
22
+ command: echo "//registry.npmjs.org/:_authToken=$npm_TOKEN" > ~/repo/.npmrc
23
24
+ name: Publish package
25
+ command: npm publish
26
build:
27
docker:
28
# specify the version you desire here
0 commit comments