From b2473030333509766dc1573f1f372e8170f60534 Mon Sep 17 00:00:00 2001 From: Oscar Polanco Date: Wed, 24 Jul 2019 10:59:16 -0400 Subject: [PATCH] Add the 'args' property and update the 'use' property to the Github actions (#672) --- .github/main.workflow | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/main.workflow b/.github/main.workflow index 56cbc966..0a576d12 100644 --- a/.github/main.workflow +++ b/.github/main.workflow @@ -10,11 +10,13 @@ action "Filter branch" { action "Update version" { needs = ["Filter branch"] - uses = "clay/docusaurus-github-action/versions@master" + uses = "clay/docusaurus-github-action@master" + args="version" } action "Build and push docs" { needs = ["Update version"] - uses = "clay/docusaurus-github-action/build_deploy@master" + uses = "clay/docusaurus-github-action@master" + args="deploy" secrets = ["DEPLOY_SSH_KEY"] }