aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/ci.yml
diff options
context:
space:
mode:
authorMiquel Sabaté Solà <msabate@suse.com>2024-03-31 12:13:21 +0200
committerMiquel Sabaté Solà <msabate@suse.com>2024-04-02 16:38:42 +0200
commit9be35b7d7ae6156765a8bd3616b38d529f2722ff (patch)
tree3d2f00e3c058ec0d184b4ed0f0d4a44d6ef70708 /.github/workflows/ci.yml
parentaf506d19f05695ec99e28670fbcb5ce894d39d12 (diff)
downloaddotfiles-9be35b7d7ae6156765a8bd3616b38d529f2722ff.tar.gz
dotfiles-9be35b7d7ae6156765a8bd3616b38d529f2722ff.zip
Moved .doom.d -> .config/doom
Signed-off-by: Miquel Sabaté Solà <msabate@suse.com>
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r--.github/workflows/ci.yml14
1 files changed, 7 insertions, 7 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 88c71d5..b337211 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -47,21 +47,21 @@ jobs:
- name: Install Doom Emacs
run: |
- git clone --depth 1 https://github.com/hlissner/doom-emacs ~/.emacs.d
- ~/.emacs.d/bin/doom install --no-config --no-env --no-fonts
+ git clone --depth 1 https://github.com/hlissner/doom-emacs ~/.config/emacs
+ ~/.config/emacs/bin/doom install --no-config --no-env --no-fonts
- name: Sync
run: |
- cp -r $(realpath .doom.d) $HOME/.doom.d
- ~/.emacs.d/bin/doom sync
+ cp -r $(realpath .config/doom) $HOME/.config/doom
+ ~/.config/emacs/bin/doom sync
- name: Check Doom installation
run: |
- ~/.emacs.d/bin/doom doctor
- test -z "$(~/.emacs.d/bin/doom doctor | grep 'errors!')"
+ ~/.config/emacs/bin/doom doctor
+ test -z "$(~/.config/emacs/bin/doom doctor | grep 'errors!')"
- name: Try to start Emacs
run: |
echo "Attempting startup..."
- ${EMACS:=emacs} -nw -Q --batch --load $HOME/.emacs.d/early-init.el
+ ${EMACS:=emacs} -nw -Q --batch --load $HOME/.config/emacs/early-init.el
echo "Startup successful"