@oliasoft-open-source/react-ui-library 2.3.2 → 2.3.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.
package/.gitlab-ci.yml CHANGED
@@ -65,13 +65,12 @@ publish:
65
65
  echo "Version $VERSION already exists"
66
66
  exit 1
67
67
  else
68
- # Tag a release in gitlab
69
68
  echo "Tagging release in git"
70
69
  git tag $VERSION -m "🤖 Tagged by Gitlab CI/CD Pipeline" -m "For further reference see $CI_PIPELINE_URL" -m "[skip ci]"
71
70
  echo "Pushing tag to remote repository"
72
71
  git push origin $VERSION --no-verify
73
- # Publish the NPM package to the public NPM registry
74
72
  echo "Publishing package to NPM registry"
75
73
  npm publish
74
+ echo "Notifying MatterMost"
76
75
  ./scripts/send-mattermost-message.sh "$MATTERMOST_BOT_KEY" "$MESSAGE"
77
76
  fi
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oliasoft-open-source/react-ui-library",
3
- "version": "2.3.2",
3
+ "version": "2.3.3",
4
4
  "description": "Reusable UI components for React projects",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -12,7 +12,7 @@ MSG=$2
12
12
  # Optional inputs:
13
13
  CHANNEL=${3:-'#releases'}
14
14
  USERNAME=${4:-'Gitlab CI/CD'}
15
- ICON_URL=${5:-'https://avatars.githubusercontent.com/in/1724?s=80&v=4'}
15
+ ICON_URL=${5:-'https://oliasoftstaticwebsite.blob.core.windows.net/helpguideimages/robot-icon.png'}
16
16
  MATTERMOST_URL=${6:-'https://mm.oliasoft.com/hooks/'}
17
17
 
18
18
  curl -X POST \