Skip to content

Commit

Permalink
Docs - Attempting to Make us Findable on Google (#124)
Browse files Browse the repository at this point in the history
* attempting to make docs appear on google

inject meta tag after building since we use dont use html
  • Loading branch information
JoshQuake authored Jan 29, 2025
1 parent eb6f588 commit 5d5a041
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,11 @@ jobs:
- name: Setup Pages
uses: actions/configure-pages@v4

- name: Inject Google Site Verification Meta Tag
run: |
META_TAG='<meta name="google-site-verification" content="T7ucgrEv7BeYVTUvpVWeSi6hZdZUrcUfhsaAG5WcQ_A" />'
find ./site -name "*.html" -exec sudo sed -i "s|</head>|$META_TAG\n</head>|g" {} +
- name: Upload Built Docs
uses: actions/upload-pages-artifact@v3
with:
Expand Down

0 comments on commit 5d5a041

Please sign in to comment.