From fd17a5c32a181ef291a8b23a0e63670ac48cd66e Mon Sep 17 00:00:00 2001 From: Gowon Patterson Date: Mon, 29 May 2023 01:46:04 -0400 Subject: [PATCH] Minor fix. --- .github/workflows/gh-pages.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/gh-pages.yaml b/.github/workflows/gh-pages.yaml index 561d3ae..707aff7 100644 --- a/.github/workflows/gh-pages.yaml +++ b/.github/workflows/gh-pages.yaml @@ -26,10 +26,10 @@ jobs: run: dotnet publish --configuration Release --output build --nologo - name: Change base-tag in index.html - run: sed -i 's///g' build.wwwroot/index.html + run: sed -i 's///g' build/wwwroot/index.html - name: Add .nojekyll file - run: touch build.wwwroot/.nojekyll + run: touch build/wwwroot/.nojekyll - name: Deploy to Github Pages uses: JamesIves/github-pages-deploy-action@v4