Skip to content

Commit

Permalink
Full build
Browse files Browse the repository at this point in the history
  • Loading branch information
glopesdev committed Mar 8, 2024
1 parent 8c1fbe6 commit fbfb94f
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions docs/build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,15 @@ foreach ($environment in $exampleEnvironments)
{
# bootstrap environment
$galleryPath = Join-Path $environment.FullName "Gallery"
New-Item -Path $galleryPath -Force -ItemType Directory
Write-Host (Test-Path $galleryPath)
Get-ChildItem -Path "..\src\bin\Release" -Filter *.nupkg | Copy-Item -Destination $galleryPath
Get-ChildItem -Path $galleryPath | Write-Host
# . (Join-Path $environment.FullName "Setup.ps1")
. (Join-Path $environment.FullName "Setup.ps1")

# # export example workflows
# $workflowPath = $environment.Parent.FullName
# $bootstrapperPath = Join-Path $environment.FullName "Bonsai.exe"
# .\bonsai\modules\Export-Image.ps1 -workflowPath $workflowPath -bootstrapperPath $bootstrapperPath
# export example workflows
$workflowPath = $environment.Parent.FullName
$bootstrapperPath = Join-Path $environment.FullName "Bonsai.exe"
.\bonsai\modules\Export-Image.ps1 -workflowPath $workflowPath -bootstrapperPath $bootstrapperPath
}
# dotnet docfx @args

0 comments on commit fbfb94f

Please sign in to comment.