N is a function in Mathematica, so it is a bad idea to use it as a variable name. Let's use m instead. Define solution as function of m:
s[m_]:=NDSolve[{2 y'''[x] + (y[x] y''[x]) == 0,
g''[x] + (0.5*m*y[x]*g'[x]) == 0,
g[0] == y[0] == 0, y'[0] == 0, y'[8] == 1, g[12] == 1}, {y, g}, {x, 0, 12}]
Set values of m
m= Range[.1, 3, .1];
and plot solutions:
Plot[Evaluate[g[x] /. (s /@ m)], {x, 0, 12},
PlotStyle -> Directive[Thick, Opacity[.8]], Frame -> True, Axes -> False]

Or use interactive content:
alst = Plot[Evaluate[g[x] /. {s[.1], s[3], s[#]}], {x, 0, 12},
Frame -> True, Axes -> False, PlotRange -> {0, 1},
PlotStyle -> Directive[Thick, Opacity[.9]],
Filling -> {1 -> {2}}, PlotLabel -> "M = " <> ToString[#]] & /@ m;
ListAnimate[alst, AnimationRunning -> False, FrameMargins -> 0]

Read the FAQs! 3) When you see good Q&A, vote them up byclicking the gray triangles, because the credibility of the system is based on the reputation gained by users sharing their knowledge. ALSO, remember to accept the answer, if any, that solves your problem,by clicking the checkmark sign` – Vitaliy Kaurov Dec 11 '12 at 7:57