Browse Source

ci: move condition back to root, debug deploy

dispose-tweaks
Christopher Felegy 6 years ago
parent
commit
e1bc3a3f0c
2 changed files with 7 additions and 7 deletions
  1. +7
    -1
      azure-pipelines.yml
  2. +0
    -6
      azure/deploy.yml

+ 7
- 1
azure-pipelines.yml View File

@@ -16,4 +16,10 @@ jobs:
vmImage: 'vs2017-win2016'
steps:
- template: azure/build.yml
- template: azure/deploy.yml
- script: echo deploy
# TODO: condition check for dev branch
condition: |
and (
succeeded(),
eq(variables['Build.SourceBranch'], 'refs/heads/ci/azure')
)

+ 0
- 6
azure/deploy.yml View File

@@ -10,9 +10,3 @@ steps:
# TODO: build nuspec

- task: PublishBuildArtifacts@1

condition: |
and (
succeeded(),
eq(variables['Build.SourceBranch'], 'refs/heads/ci/azure')
)

Loading…
Cancel
Save