From 9d07e6fcc07d1eee7452ec3a5cf7229ebd135b97 Mon Sep 17 00:00:00 2001 From: Tsvetan Igov Date: Fri, 2 Feb 2024 17:22:54 +0200 Subject: [PATCH] Fixed the GitHub workflows --- .github/workflows/push-action.yml | 4 ++-- .github/workflows/release-action.yml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/push-action.yml b/.github/workflows/push-action.yml index 4775811..b606f93 100644 --- a/.github/workflows/push-action.yml +++ b/.github/workflows/push-action.yml @@ -19,7 +19,7 @@ jobs: uses: actions/checkout@v2 - name: Restore - run: dotnet restore + run: dotnet restore src - name: Build - run: dotnet build --configuration Release --no-restore \ No newline at end of file + run: dotnet build src --configuration Release --no-restore \ No newline at end of file diff --git a/.github/workflows/release-action.yml b/.github/workflows/release-action.yml index cb4889f..6b2b7d9 100644 --- a/.github/workflows/release-action.yml +++ b/.github/workflows/release-action.yml @@ -18,13 +18,13 @@ jobs: uses: actions/checkout@v2 - name: Restore - run: dotnet restore + run: dotnet restore src - name: Build - run: dotnet build --configuration Release --no-restore + run: dotnet build src --configuration Release --no-restore - name: Pack - run: dotnet pack -c Release -o ./out --no-restore --no-build + run: dotnet pack src -c Release -o ./out --no-restore --no-build - name: Push package - local run: |