我正在为 python 包构建创建 Azure DevOps 管道,但任务 ArchiveFiles@2 失败。
- stage: Build
jobs:
- job: BuildApp
pool:
vmImage: 'ubuntu-latest'
- task: ArchiveFiles@2
inputs:
rootFolderOrFile: '$(Build.SourcesDirectory)'
includeRootFolder: false
archiveType: 'zip'
archiveFile: '$(Build.ArtifactStagingDirectory)/$(Build.BuildId).zip'
replaceExistingArchive: true
verbose: true
Run Code Online (Sandbox Code Playgroud)
错误日志是这样的
Found 20 files
Archiving file: .env_sample
... 21 more ...
##[debug]Checking for archive destination folder:/__w/1/a
##[debug]Creating archive with zip: /__w/1/a/1009007.zip
##[debug]which 'zip'
##[debug]not found
##[debug]Unable to locate executable file: 'zip'. Please verify either the file path exists or the file can be found within a …Run Code Online (Sandbox Code Playgroud)