Skip to content

Commit

Permalink
Added workflows for para tag removal
Browse files Browse the repository at this point in the history
  • Loading branch information
villyes-ledger committed Nov 3, 2024
1 parent 796ce07 commit b9016f3
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/publish_attest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ jobs:
- name: Replace comments with a space
run: find . -type f -name "*.md" -exec sed -i 's/<!--.*-->/ /g' {} +

- name: Remove <p> and </p> tags
run: find . -type f -name "*.md" -exec sed -i 's/<\/\?p>//g' {} +

- name: Publish Markdown to Confluence
uses: markdown-confluence/publish-action@v5
with:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/publish_jfrog_login.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ jobs:
- name: Replace comments with a space
run: find . -type f -name "*.md" -exec sed -i 's/<!--.*-->/ /g' {} +

- name: Remove <p> and </p> tags
run: find . -type f -name "*.md" -exec sed -i 's/<\/\?p>//g' {} +

- name: Publish Markdown to Confluence
uses: markdown-confluence/publish-action@v5
with:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/publish_sign_container.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ jobs:
- name: Replace comments with a space
run: find . -type f -name "*.md" -exec sed -i 's/<!--.*-->/ /g' {} +

- name: Remove <p> and </p> tags
run: find . -type f -name "*.md" -exec sed -i 's/<\/\?p>//g' {} +

- name: Publish Markdown to Confluence
uses: markdown-confluence/publish-action@v5
with:
Expand Down

0 comments on commit b9016f3

Please sign in to comment.