update build pipeline and version

This commit was merged in pull request #7.
This commit is contained in:
2026-07-31 16:18:10 +02:00
parent f8b1c65221
commit 36b7c319cc
2 changed files with 13 additions and 2 deletions
+11
View File
@@ -105,6 +105,17 @@ if ($? -eq $false){
}
Write-Output "Copied database files successfully"
# copy content files
Write-Output "Copying content files (documents)..."
$copy_file = Join-Path -Path $SRC_PATH -ChildPath 'data/files'
$dest_file = Join-Path -Path $ENV_PATH -ChildPath 'data/'
Copy-Item -Path $copy_file -Destination $dest_file -Force -Recurse
if ($? -eq $false){
Write-Output "[PWSH] Exiting script because there were errors while copying documents"
Exit
}
Write-Output "Copied content files (documents) successfully"
# copy alembic files
Write-Output "Copying alembic files..."
$copy_file = Join-Path -Path $SRC_PATH -ChildPath 'alembic'