From ed23c0074777655b297414b5aec5b90c9bcf3139 Mon Sep 17 00:00:00 2001 From: Awiteb Date: Mon, 4 Mar 2024 16:34:41 +0300 Subject: [PATCH] Change the `origin` remote with `github` This because we are no more in GitHub, but we are use it for hosing our pages --- Justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Justfile b/Justfile index d7f0cb1..1b9cde4 100644 --- a/Justfile +++ b/Justfile @@ -11,7 +11,7 @@ OUT_DIR := "public" touch .nojekyll git add . git commit -m "Deploy blog to github pages" - git remote add origin $(git --git-dir ../.git remote get-url origin) + git remote add origin $(git --git-dir ../.git remote get-url github) git push origin gh-pages -f cd .. rm -fr {{OUT_DIR}}