From 79ef51bc6cd3e1c0ca8c40b05d9f3df138d761dc Mon Sep 17 00:00:00 2001 From: Parth Oberoi Date: Mon, 26 Oct 2020 17:47:46 +0530 Subject: [PATCH] wip-try inputs dirctly --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 2fc475e..fc46ec9 100644 --- a/action.yml +++ b/action.yml @@ -32,11 +32,11 @@ runs: shell: bash - name: Add Remote run: | - git remote add dgit $INPUT_REMOTEURL + git remote add dgit ${{inputs.remoteUrl}} shell: bash - name: Push to Dgit run: | - git push dgit $INPUT_BRANCH + git push dgit ${{inputs.branch}} shell: bash env: DGIT_WALLET: ${{inputs.dgitWallet}}