From 4b4d6c068ff4aa42d9a7c9c22455b72360a775b3 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Tue, 11 Aug 2020 17:00:37 +0200 Subject: Update website build --- .github/workflows/gh-pages.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to '.github') diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index 52a9b32..4675a9f 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -26,9 +26,13 @@ jobs: - name: Generate Admitted icon run: python3 scripts/statistics.py src && mkdir -p docs/assets && mv admitted.svg docs/assets/. + - name: Generate html + run: + - sudo apt-get install emacs + - emacs --batch --no-init --load publish.el --funcall org-publish-all + - name: Deploy gh-pages uses: peaceiris/actions-gh-pages@v3 with: github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: ./docs - enable_jekyll: true + publish_dir: ./docs/html -- cgit