Skip to content

Commit

Permalink
Update pull-docs.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
alwyn-ixo authored Nov 3, 2023
1 parent 3f6cdad commit 2ce308f
Showing 1 changed file with 19 additions and 3 deletions.
22 changes: 19 additions & 3 deletions .github/workflows/pull-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,28 @@ jobs:
repository: ixofoundation/ixo-blockchain
ref: develop
path: ixo-blockchain
- name: Checkout ixo-signx
uses: actions/checkout@v4
with:
repository: ixofoundation/ixo-signx
ref: main
path: ixo-signx
- name: Checkout ixo-message-relayer
uses: actions/checkout@v4
with:
repository: ixofoundation/ixo-blomessage-relayerckchain
ref: main
path: ixo-message-relayer
- run: ls -al
- run: find ./ixo-blockchain -type f -name "*.md" -exec cp -R {} . \;
- run: ls -al
- run: find ./ixo-blockchain -type f -name "*.md" -exec cp -R {} ./developers/ixo-blockchain \;
- run: ls -al /developers/ixo-blockchain
- run: find ./ixo-signx -type f -name "*.md" -exec cp -R {} ./developers/ixo-signx \;
- run: ls -al /developers/ixo-signx
- run: find ./ixo-message-relayer -type f -name "*.md" -exec cp -R {} ./developers/ixo-message-relayer \;
- run: ls -al /developers/ixo-message-relayer
- run: git add .
- run: git config --global user.email "[email protected]"
- run: git config --global user.name ${{ github.actor }}
- run: git commit -m "Copy *.md files from ixo-blockchain"
- run: git commit -m "Copy *.md files from other repos"
# - run: git config --global --add safe.directory /home/runner/work/docs/docs
- run: git push

0 comments on commit 2ce308f

Please sign in to comment.