Skip to content

Commit 910942a

Browse files
committed
[skip ci] workflow: add Google Index Submission workflow
This commit introduces a new workflow for submitting the index to Google using the robingenz/action-google-indexing action. The workflow is triggered manually via workflow_dispatch. Signed-off-by: Chiho Sin <[email protected]>
1 parent a0bb90d commit 910942a

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/google.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Google Index Submission
2+
3+
on:
4+
# schedule:
5+
# - cron: 0 0,12 * * *
6+
workflow_dispatch:
7+
8+
jobs:
9+
indexnow:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Submit Index to Google
13+
uses: robingenz/[email protected]
14+
with:
15+
siteUrl: docs.fobestudio.com
16+
gcpServiceAccountKey: ${{ secrets.GCP_SA_KEY }}

0 commit comments

Comments
 (0)