flowey_lib_common/
download_gh_artifact.rsuse flowey::node::prelude::*;
flowey_request! {
pub struct Request {
pub repo_owner: String,
pub repo_name: String,
pub file_name: String,
pub path: WriteVar<PathBuf>,
pub run_id: ReadVar<String>,
pub gh_token: ReadVar<String>,
}
}
new_simple_flow_node!(struct Node);
impl SimpleFlowNode for Node {
type Request = Request;
fn imports(ctx: &mut ImportCtx<'_>) {
ctx.import::<crate::cache::Node>();
ctx.import::<crate::use_gh_cli::Node>();
}
fn process_request(request: Self::Request, ctx: &mut NodeCtx<'_>) -> anyhow::Result<()> {
let Request {
repo_owner,
repo_name,
file_name,
path,
run_id,
gh_token,
} = request;
ctx.req(crate::use_gh_cli::Request::WithAuth(
crate::use_gh_cli::GhCliAuth::AuthToken(gh_token),
));
let gh_cli = ctx.reqv(crate::use_gh_cli::Request::Get);
ctx.emit_rust_step("download artifacts from github actions run", |ctx| {
let gh_cli = gh_cli.claim(ctx);
let run_id = run_id.claim(ctx);
let path = path.claim(ctx);
move |rt| {
let sh = xshell::Shell::new()?;
let gh_cli = rt.read(gh_cli);
let run_id = rt.read(run_id);
let path_end = format!("{repo_owner}/{repo_name}/{run_id}");
let out_dir = std::env::current_dir()?.absolute()?.join(path_end);
fs_err::create_dir_all(&out_dir)?;
sh.change_dir(&out_dir);
xshell::cmd!(sh, "{gh_cli} run download {run_id} -R {repo_owner}/{repo_name} --pattern {file_name}").run()?;
if !out_dir.join(file_name).exists() {
anyhow::bail!("Failed to download artifact");
}
rt.write(path, &out_dir);
Ok(())
}
});
Ok(())
}
}