From f73e403aa36ad1ca749750ac90d42d6bbde816c4 Mon Sep 17 00:00:00 2001 From: Theodore Tsirpanis Date: Sun, 10 Nov 2024 03:26:27 +0200 Subject: [PATCH] Fix target syntax in command line. --- .github/workflows/ci.yml | 2 +- .github/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e543c2a6..61c32409 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,7 +31,7 @@ jobs: - name: Restore .NET local tools run: dotnet tool restore - name: Run tests - run: dotnet run --project eng/Farkle.Build.fsproj -- target Test + run: dotnet run --project eng/Farkle.Build.fsproj -- -t Test full_ci_passed: needs: [test] diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 95a9463a..23431a0f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -25,7 +25,7 @@ jobs: - name: Restore .NET local tools run: dotnet tool restore - name: Pack - run: dotnet run --project eng/Farkle.Build.fsproj -- target NuGetPack + run: dotnet run --project eng/Farkle.Build.fsproj -- -t NuGetPack - name: Upload package artifacts uses: actions/upload-artifact@v4 with: