1 Star 0 Fork 0

github-1/dotnet-docker

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Get-TagsDocumentation.ps1 1.23 KB
一键复制 编辑 原始数据 按行查看 历史
Matt Thalman 提交于 2019-08-23 00:54 +08:00 . Integrate infra changes from nightly (#1277)
#!/usr/bin/env pwsh
param(
[string]$Branch
)
$ErrorActionPreference = 'Stop'
$repoRoot = (Get-Item "$PSScriptRoot").Parent.FullName
if (!$Branch) {
$manifestJson = Get-Content ${repoRoot}/manifest.json | ConvertFrom-Json
if ($manifestJson.Repos[0].Name.Contains("nightly")) {
$Branch = "nightly"
$coreRepoName = "core-nightly"
}
else {
$Branch = "master"
$coreRepoName = "core"
}
}
$gitRepo = "https://github.com/dotnet/dotnet-docker"
& $PSScriptRoot/common/Invoke-ReadmeGeneration.ps1 `
dotnet/$coreRepoName/runtime-deps README.runtime-deps.md manifest.json $gitRepo $Branch
& $PSScriptRoot/common/Invoke-ReadmeGeneration.ps1 `
dotnet/$coreRepoName/runtime README.runtime.md manifest.json $gitRepo $Branch -ReuseImageBuilderImage
& $PSScriptRoot/common/Invoke-ReadmeGeneration.ps1 `
dotnet/$coreRepoName/aspnet README.aspnet.md manifest.json $gitRepo $Branch -ReuseImageBuilderImage
& $PSScriptRoot/common/Invoke-ReadmeGeneration.ps1 `
dotnet/$coreRepoName/sdk README.sdk.md manifest.json $gitRepo $Branch -ReuseImageBuilderImage
& $PSScriptRoot/common/Invoke-ReadmeGeneration.ps1 `
dotnet/core/samples README.samples.md manifest.samples.json $gitRepo -ReuseImageBuilderImage
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/github-1/dotnet-docker.git
git@gitee.com:github-1/dotnet-docker.git
github-1
dotnet-docker
dotnet-docker
master

搜索帮助