-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c85d503
commit 0e89f52
Showing
2 changed files
with
6 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -71,7 +71,7 @@ jobs: | |
- name: Check out doc site | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: lenskit/lenskit-docs | ||
repository: [email protected]:lenskit/lenskit-docs.git | ||
ssh-key: ${{steps.decrypt.output.decrypt-identity}} | ||
path: doc-site | ||
ref: latest | ||
|
@@ -82,7 +82,8 @@ jobs: | |
path: build/doc | ||
- name: 🛻 Copy documentation content | ||
run: | | ||
rsync -av --delete --exclude=.git/ build/doc/ doc-site/ | ||
rsync -av --delete --exclude=.git/ --exclude=.buildinfo --exclude=.doctrees \ | ||
build/doc/ doc-site/ | ||
cd doc-site | ||
git config user.name "LensKit Doc Bot" | ||
git config user.email "[email protected]" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -119,7 +119,7 @@ def job_publish_docs(): | |
"name": "Check out doc site", | ||
"uses": "actions/checkout@v4", | ||
"with": { | ||
"repository": "lenskit/lenskit-docs", | ||
"repository": "[email protected]:lenskit/lenskit-docs.git", | ||
"ssh-key": "${{steps.decrypt.output.decrypt-identity}}", | ||
"path": "doc-site", | ||
"ref": "latest", | ||
|
@@ -136,7 +136,8 @@ def job_publish_docs(): | |
{ | ||
"name": "🛻 Copy documentation content", | ||
"run": script(""" | ||
rsync -av --delete --exclude=.git/ build/doc/ doc-site/ | ||
rsync -av --delete --exclude=.git/ --exclude=.buildinfo --exclude=.doctrees \\ | ||
build/doc/ doc-site/ | ||
cd doc-site | ||
git config user.name "LensKit Doc Bot" | ||
git config user.email "[email protected]" | ||
|