From f9940cc8d3259e896b0da4668eafc178dff65067 Mon Sep 17 00:00:00 2001 From: Ali Abbas Jaffri Date: Tue, 20 Feb 2024 22:08:39 +0100 Subject: [PATCH] Updated mike action Signed-off-by: Ali Abbas Jaffri --- .github/actions/mike-docs/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/mike-docs/action.yaml b/.github/actions/mike-docs/action.yaml index 1f80e0f..4f61ec4 100644 --- a/.github/actions/mike-docs/action.yaml +++ b/.github/actions/mike-docs/action.yaml @@ -29,9 +29,9 @@ runs: run: | MIKE_OPTIONS=( "--update-aliases" ) if [ "true" = "${{ inputs.push }}" ]; then - MIKE_OPTIONS+=( " --push" ) + MIKE_OPTIONS+=( "--push" ) fi - mike deploy ${{ inputs.version }} ${{ inputs.alias }} "${MIKE_OPTIONS[@]}" + mike deploy "${MIKE_OPTIONS[@]}" ${{ inputs.version }} ${{ inputs.alias }} if [ "true" = "${{ inputs.push }}" ]; then mike set-default --push latest fi