Skip to content

Commit

Permalink
YAML pipe needs one actual command per line.
Browse files Browse the repository at this point in the history
  • Loading branch information
tmiw committed Mar 16, 2024
1 parent d4bf11c commit 281027e
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/render_user_manual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,9 @@ jobs:
- name: Generate manual
shell: bash
run: |
pandoc_version=`wget -O - --max-redirect 0 https://github.com/jgm/pandoc/releases/latest 2>&1 | grep "Location:" | sed 's/.*\/tag\/\([^ "]*\).*/\1/'`
pandoc_deb="pandoc-${pandoc_version}-1-amd64.deb"
wget "https://github.com/jgm/pandoc/releases/download/${pandoc_version}/${pandoc_deb}"
pandoc_version=`wget -O - --max-redirect 0 https://github.com/jgm/pandoc/releases/latest 2>&1 | grep "Location:" | sed 's/.*\/tag\/\([^ "]*\).*/\1/'` pandoc_deb="pandoc-${pandoc_version}-1-amd64.deb" wget "https://github.com/jgm/pandoc/releases/download/${pandoc_version}/${pandoc_deb}"
sudo dpkg -i ${pandoc_deb}
rm ${pandoc_deb}
pandoc -v
cd manual
make dist

0 comments on commit 281027e

Please sign in to comment.