From 6bf5d7b8dc5bc630b78472a3761568085cf3b2b6 Mon Sep 17 00:00:00 2001 From: Andrew Grimberg Date: Mon, 6 Nov 2023 15:32:08 -0800 Subject: [PATCH] Fix: Move the git fetch depth It is not possible to specify a depth larger than 1 with the tag checkout that is performed. Move the depth increase to where it's actually needed. Issue: RELENG-4975 Change-Id: I8a33ccb244bb5cff784934fe7bd75e690f6ff222 Signed-off-by: Andrew Grimberg --- .github/workflows/release.yaml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 75091ea3..774c53cc 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -11,9 +11,6 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v4 - with: - fetch-depth: 30 - fetch-tags: true - name: Get tag id: tag uses: devops-actions/action-get-tag@v1.0.2 @@ -47,7 +44,7 @@ jobs: with: python-version: "3.8" - name: Generate reno report - run: >- + run: | pipx run tox -e reno -- report \ --version "${{ steps.tag.outputs.tag }}" \ 2>/dev/null > reno-notes.md || true @@ -63,7 +60,7 @@ jobs: sed '1d' > modified-reno-notes.md fi - name: Create Release Notes - run: >- + run: | gh release create ${{ steps.tag.outputs.tag }} --generate-notes \ -F modified-reno-notes.md env: -- 2.16.6