Skip to content

Commit

Permalink
Merge pull request #1 from DeNA/fix-workflow
Browse files Browse the repository at this point in the history
Fix workflow
  • Loading branch information
t-hatano authored Oct 31, 2024
2 parents 4e35960 + 48d5b6c commit 64d3522
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 6 deletions.
1 change: 1 addition & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ jobs:
git commit -m "Bump up version"
git tag ${{ needs.check-bump-version.outputs.new-version }}
git push --tags
git push origin master
- name: Create NuPkg
run: dotnet pack ./MustAwaitAnalyzer --include-symbols --configuration Release -o ./nupkg
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -400,3 +400,5 @@ com_crashlytics_export_strings.xml
crashlytics.properties
crashlytics-build.properties
fabric.properties

*.DotSettings
4 changes: 0 additions & 4 deletions MustAwaitAnalyzer.sln.DotSettings

This file was deleted.

2 changes: 1 addition & 1 deletion MustAwaitAnalyzer/MustAwaitAnalyzer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<Description>MustAwaitAnalyzers</Description>
<Copyright>Copyright DeNA Co., Ltd. All rights reserved.</Copyright>
<PackageTags>RoslynAnalyzers</PackageTags>
<Version>1.4.6</Version>
<Version>1.0.0</Version>
<NoPackageAnalysis>true</NoPackageAnalysis>

<TargetsForTfmSpecificContentInPackage>$(TargetsForTfmSpecificContentInPackage);_AddAnalyzersToOutput</TargetsForTfmSpecificContentInPackage>
Expand Down
11 changes: 11 additions & 0 deletions NuGet.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<clear />
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
<add key="dotnet-tools" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-tools/nuget/v3/index.json" />
</packageSources>
<disabledPackageSources>
<clear />
</disabledPackageSources>
</configuration>
2 changes: 1 addition & 1 deletion com.dena.must-await-analyzer/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "com.dena.must-await-analyzer",
"displayName": "MustAwaitAnalyzer",
"version": "1.4.6",
"version": "1.0.0",
"unity": "2021.1",
"unityRelease": "2f1",
"description": "MustAwaitAnalyzer is a roslyn analyzer that enforces the use of await\n",
Expand Down

0 comments on commit 64d3522

Please sign in to comment.