Skip to content

Commits on Source 3

......@@ -310,6 +310,7 @@ deploy:production:
- curl -X POST "${DEPLOY_URL}?tag=${CI_COMMIT_TAG}"
- sentry-cli deploys new -r "${CI_COMMIT_TAG}" --env production --auth-token $SENTRY_AUTH_TOKEN -p alboneon-backend
- sentry-cli deploys new -r "${CI_COMMIT_TAG}" --env production --auth-token $SENTRY_AUTH_TOKEN -p alboneon-frontend
- curl -X POST "${DISCORD_WEBHOOK}" -H "Content-Type:application/json" -d "{\"content\":\"Alboneon ${CI_COMMIT_TAG} is now deployed\"}"
deploy:staging:
image: registry.pentacore.se/toolbox/semantic-release-image:main
......
......@@ -18,14 +18,21 @@ module.exports = {
}
],
[
"semantic-release-discord-bot",
"semantic-release-discord",
{
notifications: {
notifyOnSuccess: true,
notifyOnFail: true,
success: {
message: "Version ${nextRelease.version} has been released\n\n__**Changelog**__\n\n${nextRelease.notes}"
},
"notifyOnSuccess": true,
"notifyOnFail": true,
"onSuccessTemplate": {
"username": "$package_name",
"content": "A new version of $package_name as been released !",
"embeds": [
{
"title": "$package_name $npm_package_version",
"url": "$repo_url",
"description": "$release_notes",
"color": 16776960
}
]
}
}
],
......@@ -44,7 +51,7 @@ module.exports = {
"VERSION",
"package.json"
],
message: "${nextRelease.version}\n\n${nextRelease.notes}"
message: "${nextRelease.version}\n\n${nextRelease.notes}\n\n[skip ci]"
}
]
],
......
## [0.14.3](https://gitlab.pentacore.se/penta/alboneon/compare/v0.14.2...v0.14.3) (2022-11-10)
### Bug Fixes
* **ci:** Fix discord webhook notifications ([eb11a9c](https://gitlab.pentacore.se/penta/alboneon/commit/eb11a9cc690521596310aac5f23c6bbc0afaafe2))
* **ci:** Testing another discord package ([b19abe0](https://gitlab.pentacore.se/penta/alboneon/commit/b19abe0333b276ee2b639e33e2f4c921dbd09c19))
## [0.14.2](https://gitlab.pentacore.se/penta/alboneon/compare/v0.14.1...v0.14.2) (2022-11-10)
......
{
"name": "alboneon",
"version": "0.14.2",
"version": "0.14.3",
"description": "A Pen & Paper party management system",
"main": "index.js",
"repository": "https://github.com/pentacore/RPG.git",
......