Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs - More SEO and Excluded Docs Workflow Testing #128

Merged
merged 1 commit into from
Jan 31, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,9 @@ jobs:

- 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" {} +
META_GSV='<meta name="google-site-verification" content="T7ucgrEv7BeYVTUvpVWeSi6hZdZUrcUfhsaAG5WcQ_A" />'
META_KEYWORDS='<meta name="keywords" content="Send2UE, Send to Unreal, UE2Rigify, UE to Rigify, BlenderTools, Blender Tools, blender to unreal, import fbx to unreal, unreal engine fbx" />'
find ./site -name "index.html" -exec sudo sed -i "s|</head>|$META_GSV\n$META_KEYWORDS\n</head>|g" {} +

- name: Upload Built Docs
uses: actions/upload-pages-artifact@v3
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ on:
- 'ue2rigify/**/*'
- 'tests/**/*'
- '.github/workflows/**'
- '!.github/workflows/docs.yml'

permissions:
contents: read
Expand Down