-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Max Herrmann
committed
Jan 14, 2024
1 parent
0e7eb48
commit 2eec90a
Showing
1 changed file
with
20 additions
and
20 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,25 @@ | ||
name: Publish to GitHub Pages | ||
# name: Publish to GitHub Pages | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
# on: | ||
# push: | ||
# branches: | ||
# - master | ||
|
||
jobs: | ||
publish: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out | ||
uses: actions/checkout@v1 | ||
# jobs: | ||
# publish: | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - name: Check out | ||
# uses: actions/checkout@v1 | ||
|
||
- name: Install Emacs | ||
run: sudo apt install emacs-nox --yes | ||
# - name: Install Emacs | ||
# run: sudo apt install emacs-nox --yes | ||
|
||
- name: Build the site | ||
run: ./build.sh | ||
# - name: Build the site | ||
# run: ./build.sh | ||
|
||
- name: Publish generated content to GitHub Pages | ||
uses: JamesIves/github-pages-deploy-action@4.1.4 | ||
with: | ||
branch: gh-pages | ||
folder: public | ||
# - name: Publish generated content to GitHub Pages | ||
# uses: JamesIves/github-pages-deploy-action@4.1.4 | ||
# with: | ||
# branch: gh-pages | ||
# folder: public |