From 603465b0808bd29ee9b95389ad1c1cfce006ace9 Mon Sep 17 00:00:00 2001 From: TEC Date: Mon, 25 Mar 2024 15:14:52 +0800 Subject: [PATCH] Update CI for doom CLI changes --- .github/workflows/publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 2894355..25e27af 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -63,14 +63,14 @@ jobs: - name: Run Doom sync if: github.event_name != 'schedule' || steps.doomcache.outputs.cache-hit != 'true' - run: runner '~/.config/emacs/bin/doom sync' + run: runner '~/.config/emacs/bin/doom -! sync' - name: Pull latest (dev) org-mode if: steps.doomcache.outputs.cache-hit == 'true' run: runner 'rm -r ~/.config/emacs/.local/straight/build-*/org/ && pushd ~/.config/emacs/.local/straight/repos/org/ && git fetch tecosaur dev && git reset --hard tecosaur/dev && popd' - name: Rebuild changed packages - run: runner '~/.config/emacs/bin/doom build -r' + run: runner '~/.config/emacs/bin/doom -! sync -B' - name: Ensure emoji vector graphics exist if: github.event_name != 'schedule' || steps.doomcache.outputs.cache-hit != 'true'