Compare commits

...

7 Commits

Author SHA1 Message Date
Stefan Markovic
80ff5f0b74 Test dwld 2024-02-02 10:43:41 +01:00
Stefan Markovic
fe502b442a Revert "Remove to speed up"
This reverts commit c7d66adb58.
2024-02-01 18:27:09 +01:00
Stefan Markovic
63d6228d83 Revert "more cleanp"
This reverts commit 16c774774f.
2024-02-01 18:26:53 +01:00
Stefan Markovic
16c774774f more cleanp 2024-02-01 17:43:04 +01:00
Stefan Markovic
c251a70a3f asd 2024-02-01 16:31:29 +01:00
Stefan Markovic
c7d66adb58 Remove to speed up 2024-02-01 16:31:22 +01:00
Stefan Markovic
2a218a2990 Test 2024-02-01 11:59:15 +01:00

View File

@@ -445,8 +445,38 @@ extends:
# Publishing the GPO files
- pwsh: |-
New-Item "$(Build.ArtifactStagingDirectory)/gpo" -Type Directory
Copy-Item src\gpo\assets\* "$(Build.ArtifactStagingDirectory)/gpo" -Recurse
displayName: Stage the GPO files
- stage: PostBuild
displayName: Post-build
pool:
name: SHINE-INT-L
image: SHINE-VS17-Latest
os: windows
jobs:
- job: A
steps:
- task: DownloadPipelineArtifact@2
inputs:
buildType: 'current'
targetPath: '$(Pipeline.Workspace)' # string. Alias: path | downloadPath. Required. Destination directory. Default: $(Pipeline.Workspace).
- task: PowerShell@2
displayName: 'Calculating SHA256 hash'
inputs:
targetType: 'inline'
script: |
$p = "$(System.ArtifactsDirectory)\";
$pp = "$(System.DefaultWorkingDirectory)\";
$ppp = "$(Build.ArtifactStagingDirectory)\";
echo $p
echo $pp
echo $ppp
Get-ChildItem $p
echo "AAAAAAAAAAAAAAAAAAAAA"
Get-ChildItem $pp
echo "AAAAAAAAAAAAAAAAAAAAA"
Get-ChildItem $ppp
pwsh: true
...