fixing spelling mistakes and links #68
This file contains hidden or 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
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 |