Zip and Unzip directoriesA set of Build tasks Azure Pipelines that enables you to Zip and Unzip a directories. DocumentationZip taskIn the zip task you are able to zip multiple folders to a zip files. The task creates zip archives with the name of the folder:
In your next build step you can publish or copy the zip file to your destination location. Unzip taskIn the unzip task you are able to unzip zip files. In the ‘Zip files to unzip’ textbox you can specify multiple files to unzip. When the ‘Unzip to path’ is empty, the files will be unziped into a sub directory with the same name as the zip file.
When you specify the ‘Unzip to path’ textbox, the zip files will be unzipped into that directory. Add path variablesThe default relative path is the folder where all sources for the build definition are synced. You can go thought other directories/files on the build agent by using full paths or variables in the path. All input boxes for paths do accept variables. For example the source directory is: $(Agent.BuildDirectory)\s. Or use your own variables for the build/release pipeline in the paths. Path variables in VSTSMore on variables can be found at: MSDN Use variables More inforamtion |