mirror of
https://github.com/certbot/certbot.git
synced 2026-06-07 07:42:08 -04:00
Reuse copy task here
This commit is contained in:
parent
0963be1732
commit
16f3ab1cb3
1 changed files with 6 additions and 3 deletions
|
|
@ -8,10 +8,13 @@ jobs:
|
|||
versionSpec: 3.7
|
||||
architecture: x86
|
||||
addToPath: true
|
||||
- bash: |
|
||||
python windows-installer/construct.py
|
||||
mv windows-installer/build/nsis/*.exe $(Build.ArtifactStagingDirectory)
|
||||
- script: python windows-installer/construct.py
|
||||
displayName: Build Certbot installer
|
||||
- task: CopyFiles@2
|
||||
inputs:
|
||||
sourceFolder: $(System.DefaultWorkingDirectory)/windows-installer/build/nsis
|
||||
contents: '*.exe'
|
||||
targetFolder: $(Build.ArtifactStagingDirectory)
|
||||
- task: PublishPipelineArtifact@1
|
||||
inputs:
|
||||
path: $(Build.ArtifactStagingDirectory)
|
||||
|
|
|
|||
Loading…
Reference in a new issue