From 169d91b941909003cecb9dc43fc9c6adeaa686ae Mon Sep 17 00:00:00 2001 From: Andrew Grimberg Date: Mon, 6 Nov 2023 15:16:50 -0800 Subject: [PATCH] Fix: Run command should be a standard text fold Using >- breaks as it tells the yaml parser to stick all lines together as a single command which is incorrect. Issue: RELENG-4974 Change-Id: I5d362c44efc948242edb40619a731f0096625ec4 Signed-off-by: Andrew Grimberg --- .github/workflows/release.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 421cb3e..2e3a057 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -44,7 +44,7 @@ jobs: with: python-version: "3.8" - name: Generate reno report - run: >- + run: | # fetch last 30 changes git fetch --depth=30 pipx run tox -e reno -- report \ @@ -62,7 +62,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