1 Star 0 Fork 3

李子源/EntityFrameworkCore数据库小写扩展

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
azure-pipelines.yml 1.05 KB
一键复制 编辑 原始数据 按行查看 历史
PandaE 提交于 2021-06-24 11:15 . 修改azure devops配置
# github ci triggers doc:
# https://docs.microsoft.com/zh-cn/azure/devops/pipelines/repos/github?view=azure-devops&tabs=yaml#ci-triggers
trigger:
batch: true
tags:
include:
- v*
pool:
vmImage: 'ubuntu-latest'
variables:
gitHubConnection: 'rivenfx'
steps:
- task: PowerShell@2
name: "build_to_nuget_pakcages"
displayName: '打包'
inputs:
filePath: './nupkg/pack.ps1'
pwsh: true
workingDirectory: './nupkg'
- task: PowerShell@2
name: "publish_to_nuget"
displayName: '推送到 nuget'
inputs:
filePath: './nupkg/push_packages.ps1'
arguments: $(nuget_key)
pwsh: true
workingDirectory: './nupkg'
- task: GitHubRelease@1
name: "create_git_release_tag"
displayName: '创建 github release 标签'
inputs:
gitHubConnection: 'staneee'
repositoryName: '$(Build.Repository.Name)'
action: 'create'
target: '$(Build.SourceVersion)'
tagSource: 'gitTag'
tagPattern: 'v.*'
releaseNotesFilePath: './RELEASE_NOTES.md'
changeLogCompareToRelease: 'lastFullRelease'
changeLogType: 'commitBased'
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/li-ziyuan1210/entity-framework-core.git
git@gitee.com:li-ziyuan1210/entity-framework-core.git
li-ziyuan1210
entity-framework-core
EntityFrameworkCore数据库小写扩展
master

搜索帮助