Skip to content

Commit 25efaef

Browse files
committed
fix: streamline CNAME copying in deploy workflow
1 parent 6256b3e commit 25efaef

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/deploy-docs.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,14 @@ jobs:
2828
# - name: Generate changelog
2929
# run: git-cliff -c cliff.toml
3030

31+
- name: Copy CNAME
32+
run: |
33+
mkdir -p site
34+
cp CNAME site/
35+
3136
- name: Build and Deploy
3237
run: mkdocs gh-deploy --force
3338
env:
3439
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3540

36-
- name: Copy CNAME
37-
run: cp CNAME site/
41+

0 commit comments

Comments
 (0)