@textback/notification-widget 2.0.6-110503 → 2.0.7

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
@@ -1,7 +1,6 @@
1
1
  variables:
2
- WORK_DIR: "$CI_PROJECT_DIR"
3
- SERVICE_NAME: "notificationwidget"
4
-
2
+ WORK_DIR: '$CI_PROJECT_DIR'
3
+ SERVICE_NAME: 'notificationwidget'
5
4
 
6
5
  image: node:8.17.0-alpine3.10
7
6
 
@@ -20,9 +19,15 @@ build:
20
19
  - build
21
20
  expire_in: 1 week
22
21
 
23
- release:
22
+ release-dev:
23
+ stage: release
24
+ script:
25
+ - npm config set //registry.npmjs.org/:_authToken $NPM_TOKEN
26
+ - npm publish --verbose --access public --tag dev
27
+ when: manual
28
+ release-prod:
24
29
  stage: release
25
30
  script:
26
- - npm config set //registry.npmjs.org/:_authToken $NPM_TOKEN
31
+ - npm config set //registry.npmjs.org/:_authToken $NPM_TOKEN
27
32
  - npm publish --verbose --access public
28
33
  when: manual