We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1570f3 commit b4e8181Copy full SHA for b4e8181
.github/workflows/publish.yml
@@ -0,0 +1,16 @@
1
+name: Publish
2
+on:
3
+ push:
4
+ tags: ["*"]
5
+jobs:
6
+ nuget-push:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v3
10
+ - uses: actions/setup-dotnet@v3
11
+ with:
12
+ dotnet-version: 6.0.x
13
+ - run: dotnet pack
14
+ - run: dotnet nuget push '*.nupkg' -s 'https://api.nuget.org/v3/index.json' -k '${{ secrets.NUGET_APIKEY }}' --skip-duplicate
15
+
16
ScipDotnet/ScipDotnet.csproj
@@ -9,7 +9,6 @@
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageReadmeFile>readme.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/sourcegraph/scip-dotnet</RepositoryUrl>
- <PackageId>ScipDotnetter</PackageId>
</PropertyGroup>
<ItemGroup>
0 commit comments