Compare commits

..

3 commits

Author SHA1 Message Date
68f8a28476 ci: try to fix export (x2)
Some checks failed
Build site / deploy (push) Has been cancelled
2025-04-21 00:46:13 +03:00
65cbccf9c4 ci: try to fix org version mismatch 2025-04-21 00:19:43 +03:00
71c00295e6 ci: update workflow 2025-04-21 00:07:18 +03:00
2 changed files with 18 additions and 2 deletions

View file

@ -8,7 +8,7 @@ on:
jobs:
deploy:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v2
with:

View file

@ -26,6 +26,7 @@
(require 'use-package)
;; Org Hugo
;; (straight-use-package 'org)
(defvar-local my/org-hugo-heading-slugs nil)
@ -72,10 +73,25 @@
(setq org-make-toc-link-type-fn #'org-make-toc--link-entry-org))
;; No clue what's wrong here
(defun my/org-blackfriday-table-cell-alignment-around (fn &rest args)
(condition-case error
(apply fn args)
(error
(apply #'org-export-table-cell-alignment args))))
;; (advice-add #'org-blackfriday-table-cell-alignment
;; :around #'my/org-blackfriday-table-cell-alignment-around)
;; Export dotfiles
(setq my/config-files
'("README.org" "Emacs.org" "Desktop.org" "Console.org" "Mail.org" "Guix.org"))
'("README.org"
"Emacs.org"
"Desktop.org"
"Console.org"
"Mail.org"
"Guix.org"))
(defun my/export-dotfiles ()
(cd (concat (vc-find-root default-directory ".git") "org/configs"))