Skip to content

Commit

Permalink
Update mkdocsDeploySoteriaCurate.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Sunday-Crunk authored Apr 12, 2024
1 parent 006650d commit 73396e0
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/mkdocsDeploySoteriaCurate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,16 @@ jobs:
git commit -m 'Deploy Curate MkDocs Site'
git remote add origin https://x-access-token:${GITHUB_TOKEN}@github.com/penwern/curate-documentation.git
git push -f origin HEAD:gh-pages
- name: Test and debug text replacement
run: |
mkdir soteria-plus-docs
cp -R docs/* soteria-plus-docs/
# List all relevant files to verify they are correctly identified
find soteria-plus-docs/ -type f \( -name '*.md' -o -name '*.markdown' \)
# Applying sed to replace text and displaying file contents before and after
find soteria-plus-docs/ -type f \( -name '*.md' -o -name '*.markdown' \) -exec sh -c 'echo "Before:"; cat {}; sed -i "s/Curate/Soteria+/g" {}; echo "After:"; cat {}' \;
- name: Generate Soteria+ Documentation
run: |
Expand Down

0 comments on commit 73396e0

Please sign in to comment.