From 6a8e117d36562773b6d3f0fd4637c30b831b393a Mon Sep 17 00:00:00 2001 From: Carles Pina i Estany Date: Thu, 15 Sep 2022 23:58:38 +0100 Subject: [PATCH] Escape variables --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index e7c4f87..9a14aa9 100644 --- a/action.yml +++ b/action.yml @@ -54,7 +54,7 @@ runs: steps: - run: ls -l shell: sh - - run: $GITHUB_ACTION_PATH/entrypoint.sh ${{ inputs.source-before-directory }} ${{ inputs.source-directory }} ${{ inputs.destination-github-username }} ${{ inputs.destination-repository-name }} ${{ inputs.github-server }} ${{ inputs.user-email }} ${{ inputs.user-name }} ${{ inputs.destination-repository-username }} ${{ inputs.target-branch }} ${{ inputs.commit-message }} ${{ inputs.target-directory }} + - run: $GITHUB_ACTION_PATH/entrypoint.sh "${{ inputs.source-before-directory }}" "${{ inputs.source-directory }}" "${{ inputs.destination-github-username }}" "${{ inputs.destination-repository-name }}" "${{ inputs.github-server }}" "${{ inputs.user-email }}" "${{ inputs.user-name }}" "${{ inputs.destination-repository-username }}" "${{ inputs.target-branch }}" "${{ inputs.commit-message }}" "${{ inputs.target-directory }}" shell: sh branding: icon: git-commit