diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 846d532..6692391 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -14,7 +14,7 @@ jobs: strategy: matrix: - node-version: [14.x, 22.1] + node-version: [22.1] steps: - name: Checkout repository @@ -53,7 +53,7 @@ jobs: - name: Create GitHub Release id: create_release - uses: actions/create-release@v2 + uses: actions/create-release@v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: @@ -63,7 +63,7 @@ jobs: prerelease: false - name: Upload build artifact to Release - uses: actions/upload-release-asset@v2 + uses: actions/upload-release-asset@v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: diff --git a/.github/workflows/dotnet-desktop.yml b/.github/workflows/dotnet-desktop.yml index e718dd9..a398db4 100644 --- a/.github/workflows/dotnet-desktop.yml +++ b/.github/workflows/dotnet-desktop.yml @@ -77,9 +77,6 @@ jobs: - name: Setup MSBuild.exe uses: microsoft/setup-msbuild@v2 - # Execute all unit tests in the solution - - name: Execute unit tests - run: dotnet test # Restore the application to populate the obj folder with RuntimeIdentifiers - name: Restore the application