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 3e4e6ce commit 67ce0aeCopy full SHA for 67ce0ae
.travis.yml
@@ -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
0 commit comments