We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 29844ac + c131efd commit 133e1b1Copy full SHA for 133e1b1
templates/node/.travis.yml.twig
@@ -5,7 +5,7 @@ node_js:
5
jobs:
6
include:
7
- stage: NPM RC Release
8
- if: tag == *-rc*
+ if: tag =~ /-(rc|RC)/
9
node_js: "14.16"
10
script: echo "Deploying RC to NPM..."
11
deploy:
@@ -14,7 +14,7 @@ jobs:
14
api_key: $NPM_API_KEY
15
tag: next
16
- stage: NPM Release
17
- if: tag != *-rc*
+ if: not tag =~ /-(rc|RC)/
18
19
script: echo "Deploying to NPM..."
20
templates/web/.travis.yml.twig
script:
- npm install
@@ -17,7 +17,7 @@ jobs:
21
22
23
0 commit comments