JeremyYao commented on code in PR #213:
URL: https://github.com/apache/daffodil-site/pull/213#discussion_r2695704593
##########
.github/workflows/update-docs.yml:
##########
@@ -75,7 +75,17 @@ jobs:
- name: Install Dependencies
run: |
- sudo apt-get install -y libmxml-dev pandoc
+ sudo apt-get update
+ sudo apt-get install -y libmxml-dev
+
+ - name: Install Pandoc 3.8.3
+ run: |
+ PANDOC_VERSION=3.8.3
+ curl -L \
+
https://github.com/jgm/pandoc/releases/download/${PANDOC_VERSION}/pandoc-${PANDOC_VERSION}-linux-amd64.tar.gz
\
+ | tar xz
+ sudo mv pandoc-${PANDOC_VERSION}/bin/pandoc /usr/local/bin/pandoc
+ pandoc --version
Review Comment:
Yup it would work with the .deb file and would be simpler indeed.
Made the changes and did a quick validation workflow run. It seems to work
w/ the change
https://github.com/JeremyYao/daffodil-site/actions/runs/21043333693/workflow
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]