Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
na1307 committed Aug 16, 2024
1 parent 662dfaa commit 49b12f7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 9 deletions.
7 changes: 0 additions & 7 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -232,10 +232,6 @@ dotnet_diagnostic.CA1001.severity = warning
dotnet_diagnostic.CA1003.severity = warning
dotnet_code_quality.CA1003.api_surface = all

# Enums should have zero value
dotnet_diagnostic.CA1008.severity = warning
dotnet_code_quality.CA1008.api_surface = all

# Collections should implement generic interface
dotnet_diagnostic.CA1010.severity = warning
dotnet_code_quality.CA1010.api_surface = all
Expand Down Expand Up @@ -362,9 +358,6 @@ dotnet_code_quality.CA1720.api_surface = all
dotnet_diagnostic.CA1721.severity = warning
dotnet_code_quality.CA1721.api_surface = all

# Type names should not match namespacess
dotnet_diagnostic.CA1724.severity = warning

# Use Literals Where Appropriate
dotnet_diagnostic.CA1802.severity = warning
dotnet_code_quality.CA1802.api_surface = all
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,4 +66,6 @@ jobs:
with:
files: "*.nupkg"
- name: Publish to Nuget
run: 'dotnet nuget push "*.nupkg" -s https://api.nuget.org/v3/index.json -k ${{ secrets.NUGET_KEY }} --skip-duplicate'
run: 'dotnet nuget push "*.nupkg" -s https://api.nuget.org/v3/index.json -k $NUGET_AUTH_TOKEN --skip-duplicate'
env:
NUGET_AUTH_TOKEN: ${{ secrets.NUGET_KEY }}
2 changes: 1 addition & 1 deletion Bluehill.Hangul/Bluehill.Hangul.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<Description>한글 관련 라이브러리</Description>
<AssemblyVersion>2</AssemblyVersion>
<FileVersion>2.1.0</FileVersion>
<Version>2.1-beta.1</Version>
<Version>2.1-gh-actions-test.1</Version>
<SignAssembly>True</SignAssembly>
<AssemblyOriginatorKeyFile>..\bluehill.snk</AssemblyOriginatorKeyFile>
<NoWarn>$(NoWarn);0436;CA1510</NoWarn>
Expand Down

0 comments on commit 49b12f7

Please sign in to comment.