From ee307d7830328ad18149e7895217089bde6c9820 Mon Sep 17 00:00:00 2001 From: dkanada Date: Sun, 5 Apr 2020 04:16:17 +0900 Subject: [PATCH] minor changes to ci --- .ci/azure-pipelines.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.ci/azure-pipelines.yml b/.ci/azure-pipelines.yml index 875c14c765..f11891b6ad 100644 --- a/.ci/azure-pipelines.yml +++ b/.ci/azure-pipelines.yml @@ -15,9 +15,6 @@ jobs: - job: build displayName: 'Build' - pool: - vmImage: 'ubuntu-latest' - strategy: matrix: Development: @@ -27,6 +24,9 @@ jobs: Standalone: BuildConfiguration: standalone + pool: + vmImage: 'ubuntu-latest' + steps: - task: NodeTool@0 displayName: 'Install Node' @@ -61,11 +61,9 @@ jobs: - script: 'mv dist jellyfin-web' displayName: 'Rename Directory' - condition: succeeded() - task: PublishPipelineArtifact@1 displayName: 'Publish Release' - condition: succeeded() inputs: targetPath: '$(Build.SourcesDirectory)/jellyfin-web' artifactName: 'jellyfin-web-$(BuildConfiguration)'