From 5d5a041bf7134966571b504453a02576b6133c78 Mon Sep 17 00:00:00 2001 From: Josh Date: Wed, 29 Jan 2025 14:43:38 -0800 Subject: [PATCH] Docs - Attempting to Make us Findable on Google (#124) * attempting to make docs appear on google inject meta tag after building since we use dont use html --- .github/workflows/docs.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 2c14f66a..1fafac84 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -56,6 +56,11 @@ jobs: - name: Setup Pages uses: actions/configure-pages@v4 + - name: Inject Google Site Verification Meta Tag + run: | + META_TAG='' + find ./site -name "*.html" -exec sudo sed -i "s||$META_TAG\n|g" {} + + - name: Upload Built Docs uses: actions/upload-pages-artifact@v3 with: