From 3df2c0686e6c1a64ec7d65137040cc1477b81e63 Mon Sep 17 00:00:00 2001 From: Phil Ewels Date: Mon, 2 Sep 2024 17:15:32 +0200 Subject: [PATCH] [Docs] Workflow output: Include `publish` in example. Closes https://github.com/nextflow-io/nextflow/issues/5273 [ci-skip] Signed-off-by: Phil Ewels --- docs/workflow.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/workflow.md b/docs/workflow.md index bc87b38f80..46914810c0 100644 --- a/docs/workflow.md +++ b/docs/workflow.md @@ -409,6 +409,9 @@ A script may define the set of outputs that should be published by the implicit ```groovy workflow { foo(bar()) + + publish: + foo.out >> 'foo' } output {