Skip to content

Commit

Permalink
bug
Browse files Browse the repository at this point in the history
  • Loading branch information
devongovett committed Apr 2, 2019
1 parent f98cc23 commit 2bed68a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions azure-pipelines-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,14 +47,14 @@ jobs:
- script: npm test
displayName: Run tests

- ${{ if and(startsWith(variables['Build.SourceBranch'], 'refs/tags/v') }}:
- ${{ if startsWith(variables['Build.SourceBranch'], 'refs/tags/v') }}:
- script: npm run prebuild
displayName: Prebuild
condition: eq(variables['publish_artifacts'], 'true'))
condition: eq(variables['publish_artifacts'], 'true')

- task: PublishBuildArtifacts@1
displayName: Publish Artifacts
condition: eq(variables['publish_artifacts'], 'true'))
condition: eq(variables['publish_artifacts'], 'true')
inputs:
artifactName: prebuilds
pathtoPublish: '$(System.DefaultWorkingDirectory)/prebuilds'

0 comments on commit 2bed68a

Please sign in to comment.