@textback/notification-widget 2.0.6 → 3.0.0-dev.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.gitlab-ci.yml CHANGED
@@ -20,9 +20,16 @@ build:
20
20
  - build
21
21
  expire_in: 1 week
22
22
 
23
- release:
23
+ release-dev:
24
+ stage: release
25
+ script:
26
+ - npm config set //registry.npmjs.org/:_authToken $NPM_TOKEN
27
+ - npm version premajor --preid dev
28
+ - npm publish --verbose --access public --tag dev
29
+ when: manual
30
+ release-prod:
24
31
  stage: release
25
32
  script:
26
33
  - npm config set //registry.npmjs.org/:_authToken $NPM_TOKEN
27
34
  - npm publish --verbose --access public
28
- when: manual
35
+ when: manual