Fix: Run command should be a standard text fold 42/72342/3 v0.15.1
authorAndrew Grimberg <agrimberg@linuxfoundation.org>
Mon, 6 Nov 2023 23:16:50 +0000 (15:16 -0800)
committerAndrew Grimberg <agrimberg@linuxfoundation.org>
Mon, 6 Nov 2023 23:21:02 +0000 (15:21 -0800)
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 <agrimberg@linuxfoundation.org>
.github/workflows/release.yaml

index 421cb3e..2e3a057 100644 (file)
@@ -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: