diff --git a/.github/workflows/www.yml b/.github/workflows/www.yml index dfd1dd1..6bdf71e 100644 --- a/.github/workflows/www.yml +++ b/.github/workflows/www.yml @@ -11,16 +11,22 @@ jobs: steps: - uses: actions/checkout@v2 with: - submodules: true # Fetch Hugo themes (true OR recursive) - fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod - - - name: Setup Hugo - uses: peaceiris/actions-hugo@v2 - with: - hugo-version: '0.74.3' - - - name: Build - run: hugo --minify && echo -n enzyme.mit.edu > ./public/CNAME + submodules: true + + - name: Install dependencies + run: | + sudo apt-get update + sudo apt-get install doxygen + python3 -m venv env + source env/bin/activate + pip install --upgrade pip + pip install -r requirements.txt + + - name: Build docs + run: | + source env/bin/activate + make html + echo -n enzyme.mit.edu > ./build/html/CNAME - name: Deploy uses: peaceiris/actions-gh-pages@v3 diff --git a/config.toml b/config.toml index 2e29eca..b851f87 100644 --- a/config.toml +++ b/config.toml @@ -19,7 +19,7 @@ disablePathToLower = true # Souce Code repository section description = "Enzyme Automatic Differentiation Framework" - github_repository = "https://github.com/wsmoses/Enzyme" + github_repository = "https://github.com/EnzymeAD/Enzyme" version = "" # Documentation repository section @@ -68,12 +68,12 @@ disablePathToLower = true [[menu.main]] name = "Source" weight = 10 - url = "https://github.com/wsmoses/Enzyme" + url = "https://github.com/EnzymeAD/Enzyme" [[menu.main]] name = "Bugs" weight = 20 - url = "https://github.com/wsmoses/Enzyme/issues" + url = "https://github.com/EnzymeAD/Enzyme/issues" [[menu.main]] name = "Try Online"