From ded7e0f1f6197eabab7131fe7d420c2760c0edb1 Mon Sep 17 00:00:00 2001 From: Chris Sainty Date: Thu, 13 Jul 2023 09:47:14 +0100 Subject: [PATCH] Last fix for sample site --- .github/workflows/ci-main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-main.yml b/.github/workflows/ci-main.yml index 9d29432..122c307 100644 --- a/.github/workflows/ci-main.yml +++ b/.github/workflows/ci-main.yml @@ -62,12 +62,12 @@ jobs: run: dotnet nuget push ./nupkg/*.nupkg --source $NUGET_FEED --api-key $NUGET_KEY --skip-duplicate - name: Publish Sample Site - run: dotnet publish -c Release samples/BlazorClientSide/BlazorClientSide.csproj + run: dotnet publish -c Release samples/TextEditorDemo/TextEditorDemo.csproj - name: Rewrite base href uses: SteveSandersonMS/ghaction-rewrite-base-href@v1 with: - html_path: samples/BlazorClientSide/bin/Release/$OUTPUT_DIR/publish/wwwroot/index.html + html_path: samples/TextEditorDemo/bin/Release/net7.0/publish/wwwroot/index.html base_href: /${{ env.PROJECT_NAME }}/ - name: Deploy to Github Pages @@ -76,5 +76,5 @@ jobs: ACCESS_TOKEN: $GITHUB_TOKEN BASE_BRANCH: main # The branch the action should deploy from. BRANCH: gh-pages # The branch the action should deploy to. - FOLDER: samples/BlazorClientSide/bin/Release/$OUTPUT_DIR/publish/wwwroot # The folder the action should deploy. + FOLDER: samples/TextEditorDemo/bin/Release/net7.0/publish/wwwroot # The folder the action should deploy. SINGLE_COMMIT: true