diff --git a/.github/workflows/pkg_release.yml b/.github/workflows/pkgrelease.yml similarity index 74% rename from .github/workflows/pkg_release.yml rename to .github/workflows/pkgrelease.yml index e29951c..b7c8fd6 100644 --- a/.github/workflows/pkg_release.yml +++ b/.github/workflows/pkgrelease.yml @@ -5,7 +5,7 @@ on: - "releases/**" jobs: publish: - name: Github Packages Release + name: Package Release runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 @@ -18,8 +18,8 @@ jobs: run: dotnet restore - name: Package run: dotnet pack --no-restore -o . - - name: Publish + - name: Publish to Nuget env: - NUGET_KEY: ${{ secrets.GH_PKG_KEY }} - NUGET_API: https://nuget.pkg.github.com/tonytins/index.json + NUGET_KEY: ${{ secrets.NUGET_KEY }} + NUGET_API: https://api.nuget.org/v3/index.json run: dotnet nuget push CSTNet.*.nupkg -k $NUGET_KEY -s $NUGET_API diff --git a/CSTNet/CSTNet.csproj b/CSTNet/CSTNet.csproj index c5c639e..41eeb6e 100644 --- a/CSTNet/CSTNet.csproj +++ b/CSTNet/CSTNet.csproj @@ -2,10 +2,12 @@ netstandard2.0 - 1.0-rc1 + 1.0 Tony Bark Caret-Separated Text (or CST) is a key-value pair format represented by numbers or words as keys and the value is the string enclosed between carets (^) that contains the contents. CST.NET is a library for prasing the CST format. https://github.com/tonytins/cstnet + MIT + https://github.com/tonytins/cstnet/blob/master/LICENSE CST.Net