Skip to content
This repository has been archived by the owner on Jul 16, 2023. It is now read-only.

Commit

Permalink
Add clean step in CI/CD
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyrrrz committed Dec 19, 2020
1 parent 25b2d43 commit 6066581
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/CD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ jobs:
with:
dotnet-version: 3.1.x

- name: Clean
run: dotnet clean OsuHelper.sln && dotnet nuget locals all --clear

- name: Build & publish
run: dotnet publish OsuHelper/ -o OsuHelper/bin/Publish/ --configuration Release

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ jobs:
with:
dotnet-version: 3.1.x

- name: Clean
run: dotnet clean OsuHelper.sln && dotnet nuget locals all --clear

- name: Build & test
run: dotnet test -c Release -l GitHubActions

Expand Down

0 comments on commit 6066581

Please sign in to comment.