Skip to content
This repository has been archived by the owner on Mar 25, 2021. It is now read-only.

Commit

Permalink
Stricter regexes for deployment tags
Browse files Browse the repository at this point in the history
  • Loading branch information
adidahiya committed May 10, 2016
1 parent b03482b commit 600e6da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ dependencies:
deployment:
npm-latest:
# match semver tag (e.g. 3.12.7)
tag: /\d\d?\.\d\d?\.\d\d?/
tag: /^\d\d?\.\d\d?\.\d\d?$/
owner: palantir
commands:
- ./scripts/npmPublish.sh latest
npm-next:
# match semver tag with dev prerelease tag (e.g. 3.12.7-dev.2)
tag: /\d\d?\.\d\d?\.\d\d?-dev\.\d\d?/
tag: /^\d\d?\.\d\d?\.\d\d?-dev\.\d\d?$/
owner: palantir
commands:
- ./scripts/npmPublish.sh next

0 comments on commit 600e6da

Please sign in to comment.