Skip to content

Commit d02de7d

Browse files
CopilotRussKie
andauthored
Remove redundant dotnet build step from build workflow (#23)
* Initial plan * Remove redundant dotnet build step, dotnet publish already builds Co-authored-by: RussKie <4403806+RussKie@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: RussKie <4403806+RussKie@users.noreply.github.com>
1 parent 4eec3ca commit d02de7d

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

.github/workflows/build_plugin.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,8 @@ jobs:
2424
- name: Restore
2525
run: dotnet restore --verbosity q --nologo
2626

27-
- name: Build & package with `dotnet`
28-
run: |
29-
dotnet build -c Release --verbosity q --nologo
30-
dotnet publish --configuration Release --verbosity q --nologo
27+
- name: Publish with `dotnet`
28+
run: dotnet publish --configuration Release --verbosity q --nologo
3129

3230
# - name: Push to `Nuget.org` nuget feed
3331
# run: |

0 commit comments

Comments
 (0)