Skip to content

Commit

Permalink
#1: try fix syntax in azure pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
tlamonthezie committed Dec 19, 2024
1 parent d7eca18 commit 1aa3159
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .azure/pipelines/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -160,12 +160,12 @@ jobs:
- task: PublishTestResults@2
inputs:
testResultsFormat: 'JUnit'
testResultsFiles: $[variables.JUNIT_REPORT_PATH]
testResultsFiles: $(variables.JUNIT_REPORT_PATH)

- task: PublishPipelineArtifact@1
displayName: Upload artifacts
continueOnError: true
inputs:
targetPath: $[variables.OUTPUT_DIR]
targetPath: $(variables.OUTPUT_DIR)
artifact: 'foo-output-$(setup)'
publishLocation: 'pipeline'

0 comments on commit 1aa3159

Please sign in to comment.