Skip to content
This repository was archived by the owner on Mar 1, 2025. It is now read-only.

Commit 19cef0a

Browse files
committed
ci: fixes for documentation deployment
1 parent 1893ef6 commit 19cef0a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ jobs:
1111
- uses: actions/checkout@v2
1212
- name: deploy manpages to website
1313
env:
14-
GH_TOKEN: ${{ secrets.GIT_DEPLOY_KEY }}
14+
GH_TOKEN: ${{ secrets.GITLAB_DEPLOY_KEY }}
1515
run: |
1616
git config --global user.email "me@patrickwu.space"
1717
git config --global user.name "Jinming Wu, Patrick"
18-
git clone --depth 1 https://patrick330602:$GH_TOKEN@github.com/wslutilities/wslutilities.github.io.git website
18+
git clone --depth 1 https://patrick:$GH_TOKEN@git.wedotstud.io/wslu/documentation website
1919
cp -f ./CODE_OF_CONDUCT.md ./website/coc.md
2020
cp -f ./CONTRIBUTING.md ./website/contributing.md
2121
git --git-dir=./website/.git --work-tree=./website add -A

.github/workflows/manpage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ jobs:
1717
run: bash -c "for x in docs/*; do groff \$x -mandoc -Thtml > \${x%.*}.html; done"
1818
- name: deploy manpages to website
1919
env:
20-
GH_TOKEN: ${{ secrets.GIT_DEPLOY_KEY }}
20+
GH_TOKEN: ${{ secrets.GITLAB_DEPLOY_KEY }}
2121
run: |
2222
git config --global user.email "me@patrickwu.space"
2323
git config --global user.name "Jinming Wu, Patrick"
24-
git clone --depth 1 https://patrick330602:$GH_TOKEN@github.com/wslutilities/wslutilities.github.io.git website
24+
git clone --depth 1 https://patrick:$GH_TOKEN@git.wedotstud.io/wslu/website website
2525
bash -x extras/scripts/manpage_deploy.bash
2626
git --git-dir=./website/.git --work-tree=./website add -A
2727
git --git-dir=./website/.git --work-tree=./website commit -m "Manpage update"

0 commit comments

Comments
 (0)