1 Star 0 Fork 0

一片会思考的猪肉/IdentityServer4

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
azure-pipelines.yml 1.60 KB
一键复制 编辑 原始数据 按行查看 历史
Dominick Baier 提交于 2020-01-12 13:43 . Add Azure Artifacts
trigger:
- master
- features/*
jobs:
- job: Linux
pool:
vmImage: 'ubuntu-16.04'
steps:
- task: UseDotNet@2
displayName: 'Install .NET Core SDK'
inputs:
packageType: 'sdk'
useGlobalJson: true
- task: Bash@3
displayName: 'Build Script'
inputs:
targetType: filePath
filePath: ./build.sh
- job: Windows
pool:
vmImage: 'vs2017-win2016'
steps:
- task: UseDotNet@2
displayName: 'Install .NET Core 3.x SDK'
inputs:
packageType: 'sdk'
useGlobalJson: true
- task: PowerShell@2
displayName: 'Build Script'
inputs:
targetType: filePath
filePath: ./build.ps1
- task: NuGetCommand@2
displayName: 'Push to MyGet'
inputs:
command: push
packagesToPush: 'nuget/*.nupkg'
nuGetFeedType: external
publishFeedCredentials: 'MyGet'
condition: and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/master'))
- task: NuGetCommand@2
displayName: 'Push to AzureArtifacts'
inputs:
command: 'push'
packagesToPush: 'nuget/*.nupkg'
nuGetFeedType: 'internal'
publishVstsFeed: 'e845e192-3505-4ec1-8b52-7e11e77d5e2a/e94fc75b-9e25-43e7-bfbc-f0af758115c1'
allowPackageConflicts: true
condition: and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/master'))
- task: NuGetCommand@2
displayName: 'Push to GitHub packages'
inputs:
command: push
packagesToPush: 'nuget/*.nupkg'
nuGetFeedType: external
publishFeedCredentials: 'GitHub Packages'
condition: and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/master'))
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zhurou/IdentityServer4.git
[email protected]:zhurou/IdentityServer4.git
zhurou
IdentityServer4
IdentityServer4
master

搜索帮助