File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 55
55
release :
56
56
runs-on : ubuntu-latest
57
57
needs : build
58
- if : contains(github.event.pull_request.labels.*.name, 'release') && github.event_name == 'pull_request' && github.event.action == 'closed' && github.event.pull_request.merged == true
58
+ # if: contains(github.event.pull_request.labels.*.name, 'release') && github.event_name == 'pull_request' && github.event.action == 'closed' && github.event.pull_request.merged == true
59
+ # .net6 does not produce valid .nupkg files with wwwroot
60
+ if : 1 == 2
59
61
steps :
60
62
- name : Checkout
61
63
uses : actions/checkout@v2
74
76
PACKAGE_GITHUB_AUTH_TOKEN : ${{ secrets.PACKAGE_GITHUB_API_KEY }}
75
77
PACKAGE_GITHUB_SOURCE_URL : https://nuget.pkg.github.com/MyNihongo/index.json
76
78
run : |
77
- dotnet nuget push -s ${{ env.NUGET_SOURCE_URL }} -k ${{ env.NUGET_AUTH_TOKEN }} **/*.nupkg
78
- dotnet nuget push -s ${{ env.PACKAGE_GITHUB_SOURCE_URL }} -k ${{ env.PACKAGE_GITHUB_AUTH_TOKEN }} **/*.nupkg
79
+ dotnet nuget push -s ${{ env.NUGET_SOURCE_URL }} -k ${{ env.NUGET_AUTH_TOKEN }} --skip-duplicate **/*.nupkg
80
+ dotnet nuget push -s ${{ env.PACKAGE_GITHUB_SOURCE_URL }} -k ${{ env.PACKAGE_GITHUB_AUTH_TOKEN }} --skip-duplicate **/*.nupkg
Original file line number Diff line number Diff line change 5
5
<Nullable >enable</Nullable >
6
6
<ImplicitUsings >enable</ImplicitUsings >
7
7
<RootNamespace >MudBlazor</RootNamespace >
8
- <Version >0.0.7 </Version >
8
+ <Version >0.0.8 </Version >
9
9
<Authors >MyNihongo</Authors >
10
10
<Description >Markdown component for MudBlazor (https://mudblazor.com/)</Description >
11
11
<Copyright >Copyright © 2022 MyNihongo</Copyright >
You can’t perform that action at this time.
0 commit comments