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: |