Skip to content

Commit

Permalink
Fix: Run command should be a standard text fold
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
tykeal committed Nov 6, 2023
1 parent 04d46fc commit 169d91b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand All @@ -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:
Expand Down

0 comments on commit 169d91b

Please sign in to comment.