Skip to content

Commit

Permalink
will this actually work 5
Browse files Browse the repository at this point in the history
  • Loading branch information
FacuDeLorenzo committed Aug 19, 2024
1 parent 437a45d commit 9c3f577
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,17 @@ jobs:

- name: Display changed Markdown files
run: |
${{ github.event.before }}
${{ github.sha }}
MODIFIED_FILES2=$(git diff --name-only ${{ github.event.before }} ${{ github.sha }})
$MODIFIED_FILES2
MODIFIED_FILES=$(git diff --name-only ${{ github.event.before }} ${{ github.sha }})
echo "The following Markdown files were changed:"
git diff --name-only HEAD | grep '\.md$'
$MODIFIED_FILES
- name: Process changed Markdown files
run: |
CHANGED_FILES=$(git diff --name-only HEAD | grep '\.md$')
CHANGED_FILES=$(git diff --name-only ${{ github.event.before }} ${{ github.sha }})
for file in $CHANGED_FILES; do
FOLDER_NAME=$(basename $(dirname $file))
echo "Processing file $file in folder $FOLDER_NAME..."
Expand Down
1 change: 0 additions & 1 deletion cool-root-doc.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ This document aims to summarize each task within Aave's smart contract architect
- Staking.
- Paraswap.


## Core components diagram
![diagram](./cool-root-doc-1.svg)
## Main sequence diagram
Expand Down
1 change: 0 additions & 1 deletion cool-root-doc2.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ This document aims to summarize each task within Aave's smart contract architect
- Staking.
- Paraswap.


## Core components diagram
```mermaid
graph TD
Expand Down
1 change: 0 additions & 1 deletion coolFolder/cooldoc.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ This document aims to summarize each task within Aave's smart contract architect
- Staking.
- Paraswap.


## Core components diagram
```mermaid
graph TD
Expand Down

0 comments on commit 9c3f577

Please sign in to comment.