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 685e390 commit 5203546Copy full SHA for 5203546
templates/node/.travis.yml.twig
@@ -7,7 +7,10 @@ jobs:
7
- stage: NPM RC Release
8
if: tag =~ /-(rc|RC)/
9
node_js: "14.16"
10
- script: echo "Deploying RC to NPM..."
+ script:
11
+ - npm install
12
+ - npm run build
13
+ - echo "Deploying RC to NPM..."
14
deploy:
15
provider: npm
16
email: $NPM_EMAIL
@@ -16,10 +19,14 @@ jobs:
19
- stage: NPM Release
17
20
if: not tag =~ /-(rc|RC)/
18
21
- script: echo "Deploying to NPM..."
22
23
24
25
+ - echo "Deploying to NPM..."
26
27
28
29
api_key: $NPM_API_KEY
30
+ skip_cleanup: true
31
on:
32
tags: true
0 commit comments