Welcome to mirror list, hosted at ThFree Co, Russian Federation.

changelog.yml « templates « .azure-pipelines - github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4a65e2c2b5d92a7cc26369184b03916357bf2205 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
jobs:
  - job: changelog
    pool:
      vmImage: vs2017-win2016
    steps:
      - bash: |
          CERTBOT_VERSION="$(cd certbot && python -c "import certbot; print(certbot.__version__)" && cd ~-)"
          "${BUILD_REPOSITORY_LOCALPATH}\tools\extract_changelog.py" "${CERTBOT_VERSION}" >> "${BUILD_ARTIFACTSTAGINGDIRECTORY}/release_notes.md"
        displayName: Prepare changelog
      - task: PublishPipelineArtifact@1
        inputs:
          path: $(Build.ArtifactStagingDirectory)
          artifact: changelog
        displayName: Publish changelog