diff options
| author | Erwin de Haan <EraYaN@users.noreply.github.com> | 2019-11-24 23:01:18 +0100 |
|---|---|---|
| committer | Erwin de Haan <EraYaN@users.noreply.github.com> | 2019-11-24 23:01:18 +0100 |
| commit | f12c9bf3b0d1ad4c6bdcafc1ac97cee191a517fc (patch) | |
| tree | 3145e0a227953dfd129a60807627b0768ad8847d | |
| parent | afa1d6b70885aa585e80e94ab26cfb7b6af801fa (diff) | |
Added tag building support to Windows Web build.
| -rw-r--r-- | .ci/azure-pipelines.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.ci/azure-pipelines.yml b/.ci/azure-pipelines.yml index c829da98a..13cc67528 100644 --- a/.ci/azure-pipelines.yml +++ b/.ci/azure-pipelines.yml @@ -200,8 +200,8 @@ jobs: persistCredentials: true - task: CmdLine@2 - displayName: "Check out web" - condition: and(succeeded(), or(contains(variables['Build.SourceBranch'], 'release'), contains(variables['Build.SourceBranch'], 'master')) ,eq(variables['BuildConfiguration'], 'Release'), in(variables['Build.Reason'], 'IndividualCI', 'BatchedCI', 'BuildCompletion')) + displayName: "Check out web (master, release or tag)" + condition: and(succeeded(), or(contains(variables['Build.SourceBranch'], 'release'), contains(variables['Build.SourceBranch'], 'master'), contains(variables['Build.SourceBranch'], 'tag')) ,eq(variables['BuildConfiguration'], 'Release'), in(variables['Build.Reason'], 'IndividualCI', 'BatchedCI', 'BuildCompletion')) inputs: script: 'git clone --single-branch --branch $(Build.SourceBranchName) --depth=1 https://github.com/jellyfin/jellyfin-web.git $(Agent.TempDirectory)/jellyfin-web' |
