From 2846e3f86ed1f8a5076e031feee89531732cd5f6 Mon Sep 17 00:00:00 2001 From: Kevin Frey Date: Thu, 9 Jan 2025 13:46:50 +0100 Subject: [PATCH] Update build-gh-pages.yml faafo --- .github/workflows/build-gh-pages.yml | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build-gh-pages.yml b/.github/workflows/build-gh-pages.yml index 915c9ac..1353b2b 100644 --- a/.github/workflows/build-gh-pages.yml +++ b/.github/workflows/build-gh-pages.yml @@ -22,17 +22,16 @@ jobs: steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - - name: Setup .NET 3.1 - uses: actions/setup-dotnet@v3 + - name: Setup dotnet + uses: actions/setup-dotnet@v4 with: - dotnet-version: 3.1.301 - - - name: Setup .NET 5 - uses: actions/setup-dotnet@v3 - with: - dotnet-version: 5.0.102 + dotnet-version: | + 3.1.x + 5.0.x + 6.0.x + 7.0.x - name: Restore dotnet tools run: dotnet tool restore @@ -51,4 +50,4 @@ jobs: TOKEN: ${{ secrets.GITHUB_TOKEN }} BRANCH: gh-pages # The branch the action should deploy to. FOLDER: ./src/_public # The folder the action should deploy. - CLEAN: true # Automatically remove deleted files from the deploy branch \ No newline at end of file + CLEAN: true # Automatically remove deleted files from the deploy branch