From 10b019b3b805a76eb0888754f15e32fc09af8fbe Mon Sep 17 00:00:00 2001 From: ohemorange Date: Tue, 10 Jun 2025 14:40:53 -0700 Subject: [PATCH] moving to src layout means we need to cd into src as well to grab version number for changelog (#10325) --- .azure-pipelines/templates/stages/changelog-stage.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.azure-pipelines/templates/stages/changelog-stage.yml b/.azure-pipelines/templates/stages/changelog-stage.yml index 524904f17..40109baa4 100644 --- a/.azure-pipelines/templates/stages/changelog-stage.yml +++ b/.azure-pipelines/templates/stages/changelog-stage.yml @@ -8,7 +8,7 @@ stages: # If we change the output filename from `release_notes.md`, it should also be changed in tools/create_github_release.py - bash: | set -e - CERTBOT_VERSION="$(cd certbot && python -c "import certbot; print(certbot.__version__)" && cd ~-)" + CERTBOT_VERSION="$(cd certbot/src && 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