Skip to content

Commit

Permalink
Merge pull request #5854 from microsoft/hotfix/pipeline-paths
Browse files Browse the repository at this point in the history
ci: fixes paths for vscode publish
  • Loading branch information
baywet authored Nov 29, 2024
2 parents 6dadd39 + 3edf722 commit 5590c59
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .azure-pipelines/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -693,10 +693,10 @@ extends:
inputs:
- input: pipelineArtifact
artifactName: VSCode
targetPath: $(Build.ArtifactStagingDirectory)/VSCode
targetPath: $(Pipeline.Workspace)/VSCode
- input: pipelineArtifact
artifactName: scripts
targetPath: "$(Pipeline.Workspace)"
targetPath: "$(Pipeline.Workspace)/scripts"
dependsOn:
- github_release
steps:
Expand All @@ -713,7 +713,7 @@ extends:
scriptLocation: "inlineScript"
inlineScript: |
$aadToken = az account get-access-token --query accessToken --resource 499b84ac-1321-427f-aa17-267ca6975798 -o tsv
Get-ChildItem -Path $(Pipeline.Workspace) -Filter *.vsix -Recurse | ForEach-Object {
Get-ChildItem -Path $(Pipeline.Workspace)/VSCode -Filter *.vsix -Recurse | ForEach-Object {
$packagePath = $_.FullName
$manifestPath = $packagePath.Replace("vsix", "manifest")
$signaturePath = $packagePath.Replace("vsix", "signature.p7s")
Expand Down

0 comments on commit 5590c59

Please sign in to comment.