Skip to content

Commit

Permalink
Fixed the GitHub workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
tsIgov committed Feb 2, 2024
1 parent b448a13 commit 9d07e6f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/push-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
run: dotnet build src --configuration Release --no-restore
6 changes: 3 additions & 3 deletions .github/workflows/release-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down

0 comments on commit 9d07e6f

Please sign in to comment.