Can be used to get notifications for the following npm scripts eas-build-post-install
and eas-build-pre-upload-artifacts
in combination with the Expo EAS build.
If there is an app.json
file present then this will also be used to get more information.
npm install eas-build-notifier --save-dev
The configuration file holds an array of services. Configure only the services you want to use.
{
"services": [
{
"name": "telegram",
"config": {
"token": "token",
"chatID": "chatID"
}
},
{
"name": "discord",
"config": {
"webhookUrl": "url"
}
},
{
"name": "slack",
"config": {
"webhookUrl": "url"
}
},
{
"name": "teams",
"config": {
"webhookUrl": "url"
}
}
]
}
- Telegram
- Slack
- Discord
- Teams
If you have the HTTP API Token use the following Link to get the chatId: https://codesandbox.io/s/get-telegram-chat-id-q3qkk
Create a webhook URL
Create a webhook URL: See Documentation
See example folder.
- Slack
- Teams
- Discord
- Markdown support in addition to HTML support
- Customizable messages