diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8be7e69..9a6cd82 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -33,11 +33,11 @@ jobs: - name: Publish tool to GitHub registry if new version number if: ${{ github.ref != 'refs/heads/main' }} - run: dotnet nuget push ./**/nupkg/*.nupkg -k ${GITHUB_TOKEN} -s https://nuget.pkg.github.com/$GITHUB_REPOSITORY_OWNER/index.json --skip-duplicate --no-symbols 1 + run: dotnet nuget push ./**/nupkg/*.nupkg -k ${GITHUB_TOKEN} -s https://nuget.pkg.github.com/$GITHUB_REPOSITORY_OWNER/index.json --skip-duplicate --no-symbols env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Publish tool to NuGet registry if new version number if: ${{ github.ref == 'refs/heads/main' }} - run: dotnet nuget push ./**/nupkg/*.nupkg -k ${NUGET_API_KEY} -s https://api.nuget.org/v3/index.json --skip-duplicate --no-symbols 1 + run: dotnet nuget push ./**/nupkg/*.nupkg -k ${NUGET_API_KEY} -s https://api.nuget.org/v3/index.json --skip-duplicate --no-symbols env: NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }} diff --git a/Directory.Build.props b/Directory.Build.props index bfb843d..0c21041 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -17,5 +17,5 @@ - + diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..d6ff19d --- /dev/null +++ b/readme.md @@ -0,0 +1,3 @@ +A tool that automatically fixes issues according to Roslyn analyzers in a C# codebase. + +Still in prototyping phase, but maybe [`dotnet-format`](https://github.com/dotnet/format) will do what our original goal was.