@oliasoft-open-source/react-ui-library 2.3.2 → 2.3.4
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 +1 -2
- package/README.md +3 -1
- package/package.json +1 -1
- package/scripts/send-mattermost-message.sh +1 -1
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/README.md
CHANGED
|
@@ -2,4 +2,6 @@
|
|
|
2
2
|
|
|
3
3
|
React UI Library is a collection of reusable UI components for use in React applications.
|
|
4
4
|
|
|
5
|
-
For usage instructions and technical documentation, see the [Wiki](https://gitlab.com/oliasoft-open-source/react-ui-library/wikis/home).
|
|
5
|
+
For usage instructions and technical documentation, see the [Wiki](https://gitlab.com/oliasoft-open-source/react-ui-library/wikis/home).
|
|
6
|
+
|
|
7
|
+
License: [MIT](https://gitlab.com/oliasoft-open-source/react-ui-library/-/blob/master/LICENSE).
|
package/package.json
CHANGED
|
@@ -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://
|
|
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 \
|