How to save files to azure storage using runbooks

Hi my powershell creates an output file

$csvpath = C:/temp/test.csv
$FilePath = $CsvPath + $Compute.Name + "-" + (Get-Date).ToString("yyyyMMdd_HHmmss") + ".csv"
Export-Csv -InputObject $ComputeJobs -Path $FilePath

How can i automate this using Azure runbook and azure storage.

you will have to elaborate you question a little more.

at least what and why are you trying to do this ? This will help other folks to understand it better.