Skip to content

Commit 67e339d

Browse files
committed
Move Google verification and update action
Signed-off-by: FooterManDev <footerman.work@gmail.com>
1 parent 58499af commit 67e339d

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed
File renamed without changes.

.github/workflows/build-docs.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,17 @@ jobs:
8484
mkdir -p "$DEST"
8585
unzip "$ZIP_FILE" -d "$DEST"
8686
87+
- name: Copy Google verification to root
88+
run: |
89+
VERIF_FILE=".github/google5c656ab590a2ed69.html"
90+
DEST="${{ needs.build.outputs.build_dir }}"
91+
if [ -f "$VERIF_FILE" ]; then
92+
cp "$VERIF_FILE" "$DEST/"
93+
echo "Copied $VERIF_FILE -> $DEST/"
94+
else
95+
echo "Warning: $VERIF_FILE not found in repo. Skipping copy."
96+
fi
97+
8798
- name: Deploy to CF
8899
uses: cloudflare/wrangler-action@v3
89100
with:

0 commit comments

Comments
 (0)