Skip to content

Commit

Permalink
try3
Browse files Browse the repository at this point in the history
  • Loading branch information
FacuDeLorenzo committed Aug 16, 2024
1 parent c7fb330 commit e92cce3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 15 deletions.
19 changes: 4 additions & 15 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,25 +14,14 @@ jobs:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'

- name: Install pandoc and dependencies
- name: Install pandoc
run: |
sudo apt-get install -y pandoc texlive-xetex
pip install pandoc-mermaid-filter
npm install -g @mermaid-js/mermaid-cli
- name: Ensure pandoc-mermaid-filter is in PATH
- name: install mermaid-filter and Convert Markdown to PDF
run: |
export PATH="$PATH:$(python -m site --user-base)/bin"
echo "Checking pandoc-mermaid-filter location:"
which pandoc-mermaid-filter || { echo "pandoc-mermaid-filter not found"; exit 1; }
- name: Convert Markdown to PDF
run: |
export PATH="$PATH:$(python -m site --user-base)/bin"
pip install pandoc-mermaid-filter
for file in $(find . -name '*.md'); do
pdf_file="${file%.md}.pdf"
pandoc --filter=pandoc-mermaid-filter "$file" -o "$pdf_file" --pdf-engine=xelatex
Expand Down
1 change: 1 addition & 0 deletions coolFolder/cooldoc.md
Original file line number Diff line number Diff line change
Expand Up @@ -857,6 +857,7 @@ This script is designed to execute a series of post-deployment tasks after the A
- **setup-e-modes:** Configures e-modes (efficiency modes) for different asset classes.
- **setup-liquidation-protocol-fee:** Sets up the protocol fee for liquidations.


#### Testnet-Specific Tasks

- **disable-faucet-native-testnets:** Disables the faucet's ability to mint and borrow the wrapped native token on testnets.
Expand Down

0 comments on commit e92cce3

Please sign in to comment.