Skip to content

Commit

Permalink
Move script to sub-directory to make root cleaner
Browse files Browse the repository at this point in the history
  • Loading branch information
themkat committed Aug 12, 2024
1 parent 8fe6f73 commit 68b2db6
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/jekyll.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ jobs:
with:
version: 28.1
- name: Run Emacs Org mode publish to convert Org mode files to HTML
run: ./emacs_headless_publish.sh
run: ./scripts/emacs_headless_publish.sh
- name: Setup new tags if any
run: ./create_tag_pages.sh
run: ./scripts/create_tag_pages.sh
- name: Create report on generated tag pages
run: |
echo -e "<h2>Tags made:</h2>\n<ul>" >> $GITHUB_STEP_SUMMARY
Expand Down
2 changes: 1 addition & 1 deletion README.org
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ For building and serving the site locally, the following is needed:
- [[https://github.com/emcrisostomo/fswatch][fswatch]]


Then simply run =./dev-mode.sh=
Then simply run =./scripts/dev-mode.sh=


** Using the resources from this repo? License?
Expand Down
2 changes: 1 addition & 1 deletion _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ baseurl: ""
title: "TheMKat's blog"
paginate: 10
include: [".well-known"]
exclude: ["org", "*.sh", "*.org", "Gemfile", "Gemfile.lock"]
exclude: ["org", "scripts", "*.org", "Gemfile", "Gemfile.lock"]
sass:
style: compressed
plugins:
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

emacs -Q --script org_publish.el --eval "(progn (require 'org)(org-publish-project \"themkat\"))"
emacs -Q --script org_publish.el --eval "(progn (require 'org)(org-publish-project \"themkat\" t))"

# For now the emacs command fails because of invalid regex. Still publishes, so just saying f**k it :P
echo "Did stuff"

0 comments on commit 68b2db6

Please sign in to comment.