@ansible/ansible-ai-connect-chatbot 0.1.0 → 0.1.1
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/README.md +12 -0
- package/dist/ansible-chatbot.css +1 -1
- package/dist/ansible-chatbot.js +15501 -15331
- package/dist/ansible-chatbot.umd.cjs +100 -98
- package/dist/types/Message.d.ts +1 -0
- package/dist/useChatbot/useChatbot.d.ts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -72,3 +72,15 @@ CHATBOT_DEFAULT_PROVIDER=wisdom
|
|
|
72
72
|
}
|
|
73
73
|
}
|
|
74
74
|
```
|
|
75
|
+
|
|
76
|
+
## Releasing and publishing
|
|
77
|
+
|
|
78
|
+
Run the following GH workflows, in order:
|
|
79
|
+
|
|
80
|
+
1.- [AAP Chatbot - Release](../.github/workflows/ui_release_aap_chatbot.yml)
|
|
81
|
+
It validates the package by running tests, if successful, it releases a new version and commits the package information into the `main` branch.
|
|
82
|
+
|
|
83
|
+
2.- [AAP Chatbot - Publish](../.github/workflows/ui_publish_aap_chatbot.yml)
|
|
84
|
+
It validates the package by running tests, if successful, it builds, assembles and publishes the new [package version into npmjs](https://www.npmjs.com/package/@ansible/ansible-ai-connect-chatbot?activeTab=versions).
|
|
85
|
+
|
|
86
|
+
NOTE: Based on the [npmjs guideline for publishing new packages](https://docs.npmjs.com/updating-your-published-package-version-number).
|