fix(ci): repo should be ssh
Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
parent
7277e06c0b
commit
0b9709d5c4
4
Cargo.lock
generated
4
Cargo.lock
generated
@ -86,9 +86,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "async-trait"
|
name = "async-trait"
|
||||||
version = "0.1.72"
|
version = "0.1.73"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "cc6dde6e4ed435a4c1ee4e73592f5ba9da2151af10076cc04858746af9352d09"
|
checksum = "bc00ceb34980c03614e35a3a4e218276a0a824e911d07651cd0d858a51e8c0f0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote",
|
||||||
|
@ -275,7 +275,6 @@ impl DaggerCuddlePlease {
|
|||||||
args: &CuddlePleaseSrcArgs,
|
args: &CuddlePleaseSrcArgs,
|
||||||
) -> eyre::Result<()> {
|
) -> eyre::Result<()> {
|
||||||
let build_image = client.container().from(&args.cuddle_image);
|
let build_image = client.container().from(&args.cuddle_image);
|
||||||
|
|
||||||
let res = build_image
|
let res = build_image
|
||||||
.with_secret_variable(
|
.with_secret_variable(
|
||||||
"CUDDLE_PLEASE_TOKEN",
|
"CUDDLE_PLEASE_TOKEN",
|
||||||
@ -309,6 +308,7 @@ impl DaggerCuddlePlease {
|
|||||||
contents: Some(
|
contents: Some(
|
||||||
"
|
"
|
||||||
Host *
|
Host *
|
||||||
|
User git
|
||||||
StrictHostKeyChecking no
|
StrictHostKeyChecking no
|
||||||
UserKnownHostsFile /dev/null
|
UserKnownHostsFile /dev/null
|
||||||
",
|
",
|
||||||
@ -316,26 +316,49 @@ Host *
|
|||||||
owner: Some("root"),
|
owner: Some("root"),
|
||||||
permissions: Some(700),
|
permissions: Some(700),
|
||||||
},
|
},
|
||||||
)
|
);
|
||||||
.with_exec(vec![
|
|
||||||
"cuddle-please",
|
let remote_url = res
|
||||||
"release",
|
.with_exec(vec!["git", "config", "--get", "remote.origin.url"])
|
||||||
|
.stdout()
|
||||||
|
.await?;
|
||||||
|
|
||||||
|
let res = if remote_url.starts_with("http") {
|
||||||
|
res.with_exec(vec![
|
||||||
|
"git",
|
||||||
|
"config",
|
||||||
|
"--global",
|
||||||
&format!(
|
&format!(
|
||||||
"--engine={}",
|
"url.ssh://git@{}/.insteadOf",
|
||||||
match &args.server {
|
remote_url
|
||||||
SrcServer::Gitea { .. } => "gitea",
|
.trim_start_matches("https://")
|
||||||
SrcServer::GitHub { .. } => "github",
|
.trim_start_matches("http://")
|
||||||
}
|
|
||||||
),
|
),
|
||||||
"--log-level",
|
&remote_url,
|
||||||
match args.log_level.as_ref().unwrap_or(&LogLevel::Info) {
|
])
|
||||||
LogLevel::Trace => "trace",
|
} else {
|
||||||
LogLevel::Debug => "debug",
|
res
|
||||||
LogLevel::Info => "info",
|
};
|
||||||
LogLevel::Warn => "warn",
|
|
||||||
LogLevel::Error => "error",
|
let res = res.with_exec(vec![
|
||||||
},
|
"cuddle-please",
|
||||||
]);
|
"release",
|
||||||
|
&format!(
|
||||||
|
"--engine={}",
|
||||||
|
match &args.server {
|
||||||
|
SrcServer::Gitea { .. } => "gitea",
|
||||||
|
SrcServer::GitHub { .. } => "github",
|
||||||
|
}
|
||||||
|
),
|
||||||
|
"--log-level",
|
||||||
|
match args.log_level.as_ref().unwrap_or(&LogLevel::Info) {
|
||||||
|
LogLevel::Trace => "trace",
|
||||||
|
LogLevel::Debug => "debug",
|
||||||
|
LogLevel::Info => "info",
|
||||||
|
LogLevel::Warn => "warn",
|
||||||
|
LogLevel::Error => "error",
|
||||||
|
},
|
||||||
|
]);
|
||||||
|
|
||||||
let exit_code = res.exit_code().await?;
|
let exit_code = res.exit_code().await?;
|
||||||
if exit_code != 0 {
|
if exit_code != 0 {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user