From 480d4de75039eea58f8927e88e3a8b658e6649bf Mon Sep 17 00:00:00 2001 From: sammyette Date: Fri, 14 Apr 2023 01:25:14 -0400 Subject: [PATCH] ci: set baseurl properly --- .github/workflows/website.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/website.yml b/.github/workflows/website.yml index f5c116d..6ee4349 100644 --- a/.github/workflows/website.yml +++ b/.github/workflows/website.yml @@ -25,7 +25,7 @@ jobs: - name: Fix base URL if: steps.branch.outputs.BRANCH_NAME != 'master' && github.repository_owner == 'Rosettea' - run: sed -i "s%baseURL = 'https://rosettea.github.io/Hilbish/'%https://rosettea.github.io/Hilbish/versions/${{ steps.branch.outputs.BRANCH_NAME }}%" website/config.toml + run: sed -i "s%baseURL = 'https://rosettea.github.io/Hilbish/'%baseURL = 'https://rosettea.github.io/Hilbish/versions/${{ steps.branch.outputs.BRANCH_NAME }}'%" website/config.toml - name: Build run: 'cd website && hugo --minify'