Fix(Webhook): HostURL for generation
Some checks failed
Webhook-Everything/Webhook-Everything/pipeline/head There was a failure building this commit

This commit is contained in:
2022-05-29 00:22:21 +08:00
parent 53829a2788
commit cd2faaa02e
3 changed files with 5 additions and 2 deletions

2
Jenkinsfile vendored
View File

@@ -11,6 +11,7 @@ pipeline {
DB_NAME = credentials("DB_NAME")
DB_SSL = credentials("DB_SSL")
TELEGRAM_API_KEY = credentials("TELEGRAM_API_KEY")
HOST_URL = credentials("HOST_URL")
}
stages {
@@ -25,6 +26,7 @@ pipeline {
sh 'echo DB_NAME=$DB_NAME >> .env'
sh 'echo DB_SSL=$DB_SSL >> .env'
sh 'echo TELEGRAM_API_KEY=$TELEGRAM_API_KEY >> .env'
sh 'echo HOST_URL=$HOST_URL >> .env'
echo 'Clearing Git directory'
sh 'rm -rf ./.git'
}