feat: implement local, ssh, webhook Deployer

This commit is contained in:
Fu Diwei
2024-11-19 19:09:48 +08:00
parent aa7fb7da06
commit 6367785b1b
7 changed files with 647 additions and 5 deletions

View File

@@ -6,8 +6,8 @@ type AliyunAccess struct {
}
type ByteplusAccess struct {
AccessKey string
SecretKey string
AccessKey string `json:"accessKey"`
SecretKey string `json:"secretKey"`
}
type TencentAccess struct {
@@ -27,9 +27,9 @@ type BaiduCloudAccess struct {
}
type AwsAccess struct {
Region string `json:"region"`
AccessKeyId string `json:"accessKeyId"`
SecretAccessKey string `json:"secretAccessKey"`
Region string `json:"region"`
HostedZoneId string `json:"hostedZoneId"`
}
@@ -62,8 +62,8 @@ type PdnsAccess struct {
}
type VolcengineAccess struct {
AccessKeyID string
SecretAccessKey string
AccessKeyID string `json:"accessKeyId"`
SecretAccessKey string `json:"secretAccessKey"`
}
type HttpreqAccess struct {