diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index 00f22a2..09a5b01 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -22,17 +22,13 @@ jobs: - name: Install pandoc and dependencies run: | sudo apt-get install -y pandoc texlive-xetex - sudo pip install pandoc-mermaid-filter - echo "Installed packages:" - pip list + pip install pandoc-mermaid-filter - - name: Debug PATH + - name: Ensure pandoc-mermaid-filter is in PATH run: | - pip list - echo "Current PATH:" - echo $PATH - echo "Checking pandoc-mermaid-filter installation location:" - find $(python -m site --user-base) -name pandoc-mermaid-filter + 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: | diff --git a/coolFolder/cooldoc.md b/coolFolder/cooldoc.md index 71b73fb..b45734c 100644 --- a/coolFolder/cooldoc.md +++ b/coolFolder/cooldoc.md @@ -845,6 +845,7 @@ These adapters enable the Aave protocol to interact with ParaSwap, a DEX aggrega ### After deploy + This script is designed to execute a series of post-deployment tasks after the Aave protocol contracts have been deployed. These tasks include reviewing and setting up key protocol parameters, such as stable borrow rates, rate strategies, debt ceilings, isolation mode, e-modes, and liquidation fees. Additionally, the script handles testnet-specific tasks and can transfer ownership of the protocol if required. #### Tasks