Replies: 2 comments 1 reply
|
Just to add to it: I am now using which works, but does not track the quarto file (I could add a file target for that - I know). |
1 reply
|
Thanks. That or defining it as an input file (downstream dependency).Correct?On 23 May 2025, at 20:49, Will Landau ***@***.***> wrote:
You're on the right track. You could track the Quarto file by returning c(to_file, "bibliography_Report.qmd").
—Reply to this email directly, view it on GitHub, or unsubscribe.You are receiving this because you authored the thread.Message ID: ***@***.***>
|
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Help
Description
Hi
I have a targets pipeline with dynamic branching, and a final target which combines all targets from the branch. I would like now to have a report (quarto document) which is based on a branch.
Essentially I have (the last two targets):
Well - this is what I would like to have - but
patternis not an argument fromtar_render(it will be forwarded to the render commend, if I am not mistaken).My Question: How can I render a quarto report per dynamic branch? Do I have to use
tar_target()and a rendering function?Thanks.
All reactions