This is an automated email from the ASF dual-hosted git repository. zregvart pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel-website.git
The following commit(s) were added to refs/heads/master by this push: new 5bc2257 chore: Add build website action 5bc2257 is described below commit 5bc22576a4ed56fb14b312683bbf347ed15cdd33 Author: Zoran Regvart <zregv...@apache.org> AuthorDate: Sat Mar 2 18:26:59 2019 +0100 chore: Add build website action --- .github/main.workflow | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/main.workflow b/.github/main.workflow index 7cf0dd2..9d43c70 100644 --- a/.github/main.workflow +++ b/.github/main.workflow @@ -1,9 +1,15 @@ workflow "Build and publish the website" { on = "push" - resolves = ["Build theme"] + resolves = ["Build website"] } action "Build theme" { uses = "borales/actions-yarn@1bf615491daf339f333dcbfe4aef4337c042abd4" args = "--non-interactive --frozen-lockfile --cwd antora-ui-camel" } + +action "Build website" { + uses = "borales/actions-yarn@1bf615491daf339f333dcbfe4aef4337c042abd4" + needs = ["Build theme"] + args = "--non-interactive --frozen-lockfile" +}