File tree Expand file tree Collapse file tree 1 file changed +7
-10
lines changed
Expand file tree Collapse file tree 1 file changed +7
-10
lines changed Original file line number Diff line number Diff line change @@ -3,12 +3,13 @@ name: on-commit/push check (outside of release)
33on :
44 push :
55 branches :
6- tags-ignore :
6+ - ' **'
7+ ignore-tags :
78 - ' **'
89 pull_request :
910 branches :
1011 - main
11- tags- ignore :
12+ ignore-tags :
1213 - ' **'
1314
1415jobs :
@@ -17,19 +18,15 @@ jobs:
1718 timeout-minutes : 15
1819 steps :
1920 - name : Setup .NET
20- uses : xt0rted /setup-dotnet@v1
21+ uses : actions /setup-dotnet@v4
2122 with :
2223 dotnet-version : 8.0.x
2324 - name : Checkout
24- uses : actions/checkout@v3
25- - name : Update private NuGet source
26- run : |
27- dotnet nuget add source --name NoP77svk --username anyone --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text "https://nuget.pkg.github.com/nop77svk/index.json" \
28- || dotnet nuget update source NoP77svk --username anyone --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text --source "https://nuget.pkg.github.com/nop77svk/index.json"
25+ uses : actions/checkout@v4
2926 - name : Solution clean
3027 run : |
31- dotnet clean -c Release
32- dotnet clean -c Debug
28+ dotnet clean -c Release --no-restore
29+ dotnet clean -c Debug --no-restore
3330 - name : NuGet restore
3431 run : dotnet restore
3532 - name : Build
You can’t perform that action at this time.
0 commit comments