-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixing docs so that GH pages picks up the right CNAME for DNS (#135)
* fixing docs so that GH pages picks up the right CNAME for DNS * updating workflow to pick CNAME * making sure to correctly set permissions on the build/html directory * fixing GH actions issues with CNAME * updated docker build command to run as local user * fixed the CNAME issue and udpated GH actions --------- Co-authored-by: Salman Paracha <[email protected]>
- Loading branch information
Showing
3 changed files
with
7 additions
and
2 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
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 |
---|---|---|
@@ -1 +1 @@ | ||
archgw.com | ||
docs.archgw.com |
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 |
---|---|---|
@@ -1,2 +1,4 @@ | ||
docker build -f Dockerfile . -t sphinx | ||
docker run --rm -v $(pwd):/docs sphinx make html | ||
docker run --user $(id -u):$(id -g) --rm -v $(pwd):/docs sphinx make clean | ||
docker run --user $(id -u):$(id -g) --rm -v $(pwd):/docs sphinx make html | ||
chmod -R 777 build/html |