generated from dopt-python/py311
update build pipeline and version
This commit was merged in pull request #7.
This commit is contained in:
+2
-2
@@ -1,6 +1,6 @@
|
|||||||
[project]
|
[project]
|
||||||
name = "wce-crm"
|
name = "wce-crm"
|
||||||
version = "0.1.1dev10"
|
version = "0.1.1dev11"
|
||||||
description = "GUI for CRM of NAFKA project with WCE"
|
description = "GUI for CRM of NAFKA project with WCE"
|
||||||
authors = [
|
authors = [
|
||||||
{name = "d-opt GmbH, resp. Florian Förster", email = "f.foerster@d-opt.com"},
|
{name = "d-opt GmbH, resp. Florian Förster", email = "f.foerster@d-opt.com"},
|
||||||
@@ -79,7 +79,7 @@ directory = "reports/coverage"
|
|||||||
|
|
||||||
|
|
||||||
[tool.bumpversion]
|
[tool.bumpversion]
|
||||||
current_version = "0.1.1dev10"
|
current_version = "0.1.1dev11"
|
||||||
parse = """(?x)
|
parse = """(?x)
|
||||||
(?P<major>0|[1-9]\\d*)\\.
|
(?P<major>0|[1-9]\\d*)\\.
|
||||||
(?P<minor>0|[1-9]\\d*)\\.
|
(?P<minor>0|[1-9]\\d*)\\.
|
||||||
|
|||||||
@@ -105,6 +105,17 @@ if ($? -eq $false){
|
|||||||
}
|
}
|
||||||
Write-Output "Copied database files successfully"
|
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
|
# copy alembic files
|
||||||
Write-Output "Copying alembic files..."
|
Write-Output "Copying alembic files..."
|
||||||
$copy_file = Join-Path -Path $SRC_PATH -ChildPath 'alembic'
|
$copy_file = Join-Path -Path $SRC_PATH -ChildPath 'alembic'
|
||||||
|
|||||||
Reference in New Issue
Block a user