Skip to content

Minor header changes #76

Minor header changes

Minor header changes #76

Workflow file for this run

name: Publish to GitHub Pages
on:
push:
branches:
- main
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v1
- name: Build and Install Emacs
run: |
sudo apt-get update
sudo apt-get install -y build-essential libncurses-dev gnutls-bin
wget https://ftp.gnu.org/pub/gnu/emacs/emacs-29.3.tar.xz
tar xvf emacs-29.3.tar.xz
cd emacs-29.3
./configure --without-x --with-modules --with-gnutls=ifavailable
make -j$(nproc)
sudo make install
- name: Build the site and Publish to GitHub Pages
run: |
./build.sh
- name: Deploy to GitHub Pages
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: public