From 61403c30a29e9df883323f13cd62ab5170a3a1df Mon Sep 17 00:00:00 2001 From: Richard Cooper Date: Fri, 25 Oct 2019 11:51:57 +0100 Subject: [PATCH] switch to "yarn gulp" for consistency. --- azure-pipelines.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index b5d11277..f293d841 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -27,8 +27,8 @@ stages: displayName: 'Install Node.js 10.16.3' - script: yarn install displayName: 'Run yarn install' - - script: gulp release --win32 --win64 - displayName: 'Run gulp release' + - script: yarn gulp release --win32 --win64 + displayName: 'Run yarn gulp release' - powershell: Set-Content -Path '$(System.DefaultWorkingDirectory)/release/log.txt' -Value $env:BUILD_SOURCEVERSIONMESSAGE - task: PublishPipelineArtifact@1 @@ -51,8 +51,8 @@ stages: displayName: 'Install Gulp' - script: yarn install displayName: 'Run yarn install' - - script: gulp release --osx64 - displayName: 'Run gulp release' + - script: yarn gulp release --osx64 + displayName: 'Run yarn gulp release' - task: PublishPipelineArtifact@1 displayName: 'Publish MacOS release' @@ -72,7 +72,7 @@ stages: displayName: 'Install Node.js 10.16.3' - script: yarn install displayName: 'Run yarn install' - - script: gulp release --linux32 --linux64 + - script: yarn gulp release --linux32 --linux64 displayName: 'Run gulp release' - script: cd $(System.DefaultWorkingDirectory)/release; find -mindepth 1 -maxdepth 1 -type d -exec rm -r {} \; displayName: 'Clean release folders'