diff --git a/.github/actions/mike-docs/action.yaml b/.github/actions/mike-docs/action.yaml index 1f80e0fe..4f61ec4d 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