From 6104ff48f2eb5de2ff76d39ed057d69675131784 Mon Sep 17 00:00:00 2001 From: logosghservice Date: Mon, 1 Jun 2026 16:05:31 +0000 Subject: [PATCH] Apply convention faithlife-dotnet-library-workflow --- .github/workflows/ci.yml | 10 +++++----- .github/workflows/copilot-setup-steps.yml | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7744803..d0e8872 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,13 +34,13 @@ jobs: - name: Install .NET uses: actions/setup-dotnet@v5 - name: Restore - run: .\build.ps1 restore + run: ./build.ps1 restore - name: Build - run: .\build.ps1 build --skip restore + run: ./build.ps1 build --skip restore - name: Test - run: .\build.ps1 test --skip build + run: ./build.ps1 test --skip build - name: Package - run: .\build.ps1 package --skip test + run: ./build.ps1 package --skip test - name: Upload packages if: matrix.os == 'windows-latest' uses: actions/upload-artifact@v7 @@ -86,4 +86,4 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} NUGET_API_KEY: ${{ steps.nuget-login.outputs.NUGET_API_KEY }} - run: .\build.ps1 publish --skip package --trigger publish-nuget-output + run: ./build.ps1 publish --skip package --trigger publish-nuget-output diff --git a/.github/workflows/copilot-setup-steps.yml b/.github/workflows/copilot-setup-steps.yml index c82b37e..c17afdd 100644 --- a/.github/workflows/copilot-setup-steps.yml +++ b/.github/workflows/copilot-setup-steps.yml @@ -26,5 +26,5 @@ jobs: - name: Install .NET uses: actions/setup-dotnet@v5 - name: Restore - run: .\build.ps1 restore + run: ./build.ps1 restore shell: pwsh