1 Star 0 Fork 111

zzgzzgok/ZKEACMS

forked from ZKEASOFT/ZKEACMS 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Release.ps1 2.09 KB
一键复制 编辑 原始数据 按行查看 历史
ZKEASOFT 提交于 2024-08-18 14:22 . Read version from Version
Add-Type -assembly "system.io.compression.filesystem"
[xml]$cmsProj = Get-Content "src/ZKEACMS/ZKEACMS.csproj"
$version = $cmsProj.Project.PropertyGroup[0].Version
Write-Host "Create a new release for version $version ?"
Pause
$releaseFolder = "Release"
Write-Host "This may take a few minutes, please wait..."
if(Test-Path $releaseFolder){
Remove-Item -Path $releaseFolder -Force -Recurse
}
Invoke-Expression("dotnet restore")
Set-Location src/ZKEACMS.WebHost
Invoke-Expression("dotnet tool restore")
Invoke-Expression("dotnet tool run publish-zkeacms")
Write-Host "Copy application files..."
Set-Location ../../
New-Item -Path "." -Name $releaseFolder -ItemType "directory" -Force
Move-Item -Path "src/ZKEACMS.WebHost/bin/Release/PublishOutput" -Destination "$releaseFolder/Application"
Write-Host "Generate application database..."
New-Item -Path "$releaseFolder/Application" -Name "App_Data" -ItemType "directory"
Set-Location Database/SQLite
Invoke-Expression("sqlite-exec -d ../../$releaseFolder/Application/App_Data/Database.sqlite -f ZKEACMS.sqlite.sql")
Set-Location ../../
Copy-Item -Path "Database/SQLite/appsettings.json" -Destination "$releaseFolder/Application/appsettings.json" -Force
Write-Host "Copy database scripts..."
$dbSource = 'Database'
$dbDestination = "$releaseFolder/Database"
$exclude = @('*.mdf','*.ldf','*.cmd','*.exe','*.dll','*.sh','*.json')
$length =(Get-Item -Path ".\" -Verbose).FullName.Length + $dbSource.Length + 1
Get-ChildItem $dbSource -Recurse -Exclude $exclude | Copy-Item -Destination {Join-Path $dbDestination $_.FullName.Substring($length)}
Write-Host "Zip application to cms.zip"
[io.compression.zipfile]::CreateFromDirectory("$releaseFolder/Application", "$releaseFolder/cms-v$version.zip")
Write-Host "Build docker image and push to docker hub?"
Pause
Write-Host "Build docker image..."
Invoke-Expression("docker build -t zkeasoft/zkeacms:latest .")
Invoke-Expression("docker tag zkeasoft/zkeacms:latest zkeasoft/zkeacms:v$version")
Write-Host "Push to docker hub..."
Invoke-Expression("docker push zkeasoft/zkeacms:latest")
Invoke-Expression("docker push zkeasoft/zkeacms:v$version")
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/zzgzzgok/ZKEACMS.Core.git
git@gitee.com:zzgzzgok/ZKEACMS.Core.git
zzgzzgok
ZKEACMS.Core
ZKEACMS
master

搜索帮助