diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index 28a301d..2cf9f65 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -8,7 +8,7 @@ on: jobs: deploy: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - uses: actions/checkout@v2 with: diff --git a/scripts/publish-configs.el b/scripts/publish-configs.el index a42277f..688321f 100644 --- a/scripts/publish-configs.el +++ b/scripts/publish-configs.el @@ -26,7 +26,7 @@ (require 'use-package) ;; Org Hugo -(straight-use-package 'org) +;; (straight-use-package 'org) (defvar-local my/org-hugo-heading-slugs nil) @@ -73,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"))