diff --git a/RELEASENOTE.md b/RELEASENOTE.md index f37cebbc74c..a4ed8776c6e 100644 --- a/RELEASENOTE.md +++ b/RELEASENOTE.md @@ -1,6 +1,13 @@ -Version Notes (Current Version: v2.59.0) +Version Notes (Current Version: v2.60.0) ======================================= +v2.60.0 +----------- +1. Test: a release can be successfully created on Github +2. Test: release for an existing github release will stopped with error +3. Test: docfx.zip is uploaded +4. Review log + v2.59.0 ----------- 1. Upgrade markdig to 2.26.0. (#7701) diff --git a/tools/Deployment/config.ps1 b/tools/Deployment/config.ps1 index f327187c6c5..0a9f650701e 100644 --- a/tools/Deployment/config.ps1 +++ b/tools/Deployment/config.ps1 @@ -1,9 +1,9 @@ $homeDir = (Resolve-Path "$PSScriptRoot\..\..").Path $docfx = @{ - httpsRepoUrl = "https://github.com/dotnet/docfx.git" - httpsRepoUrlWithToken = "https://{0}@github.com/dotnet/docfx.git" - sshRepoUrl = "git@github.com-ci:dotnet/docfx.git" + httpsRepoUrl = "https://github.com/v-pegao/docfx.git" + httpsRepoUrlWithToken = "https://{0}@github.com/v-pegao/docfx.git" + sshRepoUrl = "git@github.com-ci:v-pegao/docfx.git" docfxSeedRepoUrl = "https://github.com/docascode/docfx-seed.git" docfxSeedHome = "$homeDir\test\docfx-seed" targetFolder = "$homeDir\target" diff --git a/tools/Deployment/deploy.ps1 b/tools/Deployment/deploy.ps1 index 4389c8444b2..fc1d70a84e6 100644 --- a/tools/Deployment/deploy.ps1 +++ b/tools/Deployment/deploy.ps1 @@ -69,9 +69,9 @@ try { if (IsReleaseNoteVersionChanged $gitCommand $docfx.releaseNotePath) { PackAssetZip $docfx.releaseFolder $docfx.assetZipPath - PublishToNuget $nugetCommand $nuget."nuget.org" $docfx.artifactsFolder $env:NUGETAPIKEY + # PublishToNuget $nugetCommand $nuget."nuget.org" $docfx.artifactsFolder $env:NUGETAPIKEY PublishToGithub $docfx.assetZipPath $docfx.releaseNotePath $docfx.sshRepoUrl $env:TOKEN - PublishToChocolatey $chocoCommand $docfx.releaseNotePath $docfx.assetZipPath $choco.chocoScript $choco.nuspec $choco.homeDir $env:CHOCO_TOKEN + # PublishToChocolatey $chocoCommand $docfx.releaseNotePath $docfx.assetZipPath $choco.chocoScript $choco.nuspec $choco.homeDir $env:CHOCO_TOKEN } else { Write-Host "`$releaseNotePath $($docfx.releaseNotePath) hasn't been changed. Ignore to publish package." -ForegroundColor Yellow }