datakeen-session-react 1.0.1 → 1.0.3

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.
Files changed (2) hide show
  1. package/.gitlab-ci.yml +7 -1
  2. package/package.json +1 -1
package/.gitlab-ci.yml CHANGED
@@ -48,10 +48,16 @@ publish:
48
48
  script:
49
49
  - git config user.email "ci@example.com"
50
50
  - git config user.name "CI Bot"
51
+ - git remote set-url origin https://${CI_PUSH_USER}:${CI_PUSH_TOKEN}@gitlab.com/datakeenteam/teamfullstack/client-sessions-react-sdk.git
52
+
51
53
  - echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc
52
54
  - npm ci
53
55
  - npm run rollup
54
- - npm version patch
56
+ - 'npm version patch -m "chore(release): %s [ci skip]"'
57
+
58
+ - git push origin HEAD:main
59
+ - git push origin --tags
60
+
55
61
  - npm publish
56
62
  only:
57
63
  - main
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "datakeen-session-react",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "description": "React SDK component to manage and render Datakeen session experiences easily.",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",