Skip to content

Commit 2e4c3af

Browse files
Fix.
1 parent 017a4c0 commit 2e4c3af

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

azure-pipelines.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,22 +15,22 @@ jobs:
1515

1616
- script: npm pack
1717
displayName: 'npm pack'
18-
condition: and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/master'))'
18+
condition: and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/master'))
1919

2020
- task: CopyFiles@2
2121
inputs:
2222
sourceFolder: '$(Build.SourcesDirectory)'
2323
contents: '*.tgz'
2424
targetFolder: $(Build.ArtifactStagingDirectory)
2525
displayName: 'Copy npm package to staging'
26-
condition: and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/master'))'
26+
condition: and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/master'))
2727

2828
- task: PublishBuildArtifacts@1
2929
inputs:
3030
pathtoPublish: '$(Build.ArtifactStagingDirectory)'
3131
artifactName: npm
3232
displayName: 'Publish npm artifact'
33-
condition: and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/master'))'
33+
condition: and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/master'))
3434

3535
- job: 'MacOS_1013'
3636
pool:

0 commit comments

Comments
 (0)