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

Commit

Permalink
Merge branch 'release/2.0.0' into 'master'
Browse files Browse the repository at this point in the history
Release/2.0.0

See merge request Apps/bin-eLehrmittel/ngx-source-obfuscation!3
  • Loading branch information
Nicolas Schäfli committed Mar 30, 2020
2 parents 330f9fd + 035c2d7 commit d677157
Show file tree
Hide file tree
Showing 9 changed files with 148,022 additions and 625 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
/bazel-out
*.js
*.map
!.yarn/releases/*.js

# dependencies
/node_modules
Expand Down
30 changes: 27 additions & 3 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,15 +43,39 @@ deploy_dry_run:
dependencies:
- build

deploy:
deploy-release:
stage: deploy
extends: .node_docker
only:
refs:
- master
refs:
- '/^tags\/v(\d+\.\d+\.\d+)$/'
script: npm publish --access public
when: manual
dependencies:
- build
allow_failure: false

deploy-release-candidate:
stage: deploy
extends: .node_docker
only:
refs:
- '/^tags\/v(\d+\.\d+\.\d+)-rc\.\d{1,3}$/'
script: npm publish --tag rc --access public
when: manual
dependencies:
- build
allow_failure: false

deploy-alpha:
stage: deploy
extends: .node_docker
only:
refs:
- '/^tags\/v(\d+\.\d+\.\d+)-alpha\.\d{1,3}$/'
script: npm publish --tag alpha --access public
when: manual
dependencies:
- build
allow_failure: false

Loading

0 comments on commit d677157

Please sign in to comment.