From b26504ea7048b1da2e8fb6c58f6f1c18a375d0aa Mon Sep 17 00:00:00 2001 From: Hogo <64896329+HugoVG@users.noreply.github.com> Date: Fri, 22 Mar 2024 15:18:56 +0100 Subject: [PATCH] Update dotnet-desktop.yml --- .github/workflows/dotnet-desktop.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/dotnet-desktop.yml b/.github/workflows/dotnet-desktop.yml index 880e065..c764601 100644 --- a/.github/workflows/dotnet-desktop.yml +++ b/.github/workflows/dotnet-desktop.yml @@ -11,11 +11,11 @@ jobs: runs-on: ubuntu-latest steps: # uses GitHub's checkout action to checkout code form the master branch - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 # sets up .NET Core SDK 3.1 - name: Setup .NET Core SDK - uses: actions/setup-dotnet@v1 + uses: actions/setup-dotnet@v4 with: dotnet-version: 8.x # Configure WASM tools @@ -35,7 +35,7 @@ jobs: run: ls -al # changes the base-tag in index.html from '/' to 'CurrentDevice' to match GitHub Pages repository subdirectory - name: Change base-tag in index.html from / to CurrentDevice - run: sed -i 's///g' release/index.html + run: sed -i 's///g' release/wwwroot/index.html # DEBUG: List files - name: copy to release run: cp release/wwwroot/* release/ -r