Skip to content

Commit 855dd09

Browse files
bump to 0.0.8 (#67)
* skip duplicate nugets * disable the release stage
1 parent bd35b46 commit 855dd09

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/ci-build.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,9 @@ jobs:
5555
release:
5656
runs-on: ubuntu-latest
5757
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
5961
steps:
6062
- name: Checkout
6163
uses: actions/checkout@v2
@@ -74,5 +76,5 @@ jobs:
7476
PACKAGE_GITHUB_AUTH_TOKEN: ${{ secrets.PACKAGE_GITHUB_API_KEY }}
7577
PACKAGE_GITHUB_SOURCE_URL: https://nuget.pkg.github.com/MyNihongo/index.json
7678
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

src/MudBlazor.Markdown/MudBlazor.Markdown.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<Nullable>enable</Nullable>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<RootNamespace>MudBlazor</RootNamespace>
8-
<Version>0.0.7</Version>
8+
<Version>0.0.8</Version>
99
<Authors>MyNihongo</Authors>
1010
<Description>Markdown component for MudBlazor (https://mudblazor.com/)</Description>
1111
<Copyright>Copyright © 2022 MyNihongo</Copyright>

0 commit comments

Comments
 (0)