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>
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 \
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: