Skip to content

Commit

Permalink
Fixing path references.
Browse files Browse the repository at this point in the history
  • Loading branch information
mijpeterson committed Jun 17, 2024
1 parent 17b2ac5 commit 2d13aec
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release-azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -151,11 +151,11 @@ extends:
inputs:
- input: pipelineArtifact
artifactName: azureauth-${{ parameters.version }}-${{ config.runtime }}
targetPath: .
targetPath: ./azureauth-${{ parameters.version }}-${{ config.runtime }}
outputs:
- output: pipelineArtifact
artifactName: azureauth-${{ parameters.version }}-${{ config.runtime }}-signed
targetPath: .
targetPath: ./azureauth-${{ parameters.version }}-${{ config.runtime }}
steps:
- checkout: self
- task: UsePythonVersion@0
Expand Down Expand Up @@ -222,12 +222,12 @@ extends:
- ${{ each config in parameters.buildConfigs }}:
- input: pipelineArtifact
artifactName: azureauth-${{ parameters.version }}-${{ config.runtime }}-signed
targetPath: .
targetPath: ./azureauth-${{ parameters.version }}-${{ config.runtime }}
outputs:
- ${{ each config in parameters.buildConfigs }}:
- output: pipelineArtifact
artifactName: azureauth-${{ parameters.version }}-${{ config.runtime }}.${{ config.archiveExt }}-packaged
targetPath: azureauth-${{ parameters.version }}-${{ config.runtime }}.${{ config.archiveExt }}
targetPath: ./azureauth-${{ parameters.version }}-${{ config.runtime }}.${{ config.archiveExt }}
steps:
- task: ArchiveFiles@2
displayName: Create win10-x64 archive
Expand Down

0 comments on commit 2d13aec

Please sign in to comment.