From 0c4de8371e1f233299b7fec62d4aa8571b618911 Mon Sep 17 00:00:00 2001 From: Mykola Mozghovyi Date: Sun, 14 Jan 2024 15:55:40 +0200 Subject: [PATCH] publish try again --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 4f554607..d646610e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,6 +1,6 @@ name: DeployToGitHubPages env: - PUBLISH_DIR: bin/Release/net8.0/publish/wwwroot + PUBLISH_DIR: blazor-app/bin/Release/net8.0/publish/wwwroot # Controls when the action will run on: @@ -14,13 +14,13 @@ jobs: - uses: actions/checkout@v2 - name: Publish app - run: dotnet publish -c Release + run: dotnet publish -c Release ./blazor-app/ - name: Rewrite base href uses: SteveSandersonMS/ghaction-rewrite-base-href@v1 with: html_path: ${{ env.PUBLISH_DIR }}/index.html - base_href: /BlazorOnGitHubPages/ + base_href: /ai-flashcards/blazor-app/ - name: GitHub Pages if: success()