From 4da8904017988a4164d0c2a81eb924e208ecc4fd Mon Sep 17 00:00:00 2001 From: "Thomas A. Christensen II" <25492070+MillironX@users.noreply.github.com> Date: Tue, 30 Nov 2021 08:20:29 -0600 Subject: [PATCH] Correct the canonical URL for docs Signed-off-by: Thomas A. Christensen II <25492070+MillironX@users.noreply.github.com> --- README.md | 8 ++++---- docs/make.jl | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index b6781ae..a904c88 100644 --- a/README.md +++ b/README.md @@ -11,10 +11,10 @@ || || ``` -[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://MillironX.github.io/cowsay.jl/stable) -[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://MillironX.github.io/cowsay.jl/dev) -[![Build Status](https://github.com/MillironX/cowsay.jl/workflows/CI/badge.svg)](https://github.com/MillironX/cowsay.jl/actions) -[![Coverage](https://codecov.io/gh/MillironX/cowsay.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/MillironX/cowsay.jl) +[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://millironx.com/Cowsay.jl/stable) +[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://millironx.com/Cowsay.jl/dev) +[![Build Status](https://github.com/MillironX/Cowsay.jl/workflows/CI/badge.svg)](https://github.com/MillironX/Cowsay.jl/actions) +[![Coverage](https://codecov.io/gh/MillironX/Cowsay.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/MillironX/Cowsay.jl) A talking cow library for Julia, based on the [Fedora release of cowsay](https://src.fedoraproject.org/rpms/cowsay). diff --git a/docs/make.jl b/docs/make.jl index 7d5af3f..50a2751 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -10,7 +10,7 @@ makedocs(; sitename="cowsay.jl", format=Documenter.HTML(; prettyurls=get(ENV, "CI", "false") == "true", - canonical="https://MillironX.github.io/cowsay.jl", + canonical="https://millironx.com/Cowsay.jl", assets=String[], ), pages=[ @@ -20,6 +20,6 @@ makedocs(; ) deploydocs(; - repo="github.com/MillironX/cowsay.jl", + repo="github.com/millironx/Cowsay.jl", devbranch="master", )