We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e2746fe commit 95e06e5Copy full SHA for 95e06e5
1 file changed
.github/workflows/publish-package.yml
@@ -16,6 +16,11 @@ jobs:
16
steps:
17
- name: Checkout repository
18
uses: actions/checkout@v2
19
+
20
+ - name: Setup .NET 6
21
+ uses: actions/setup-dotnet@v1
22
+ with:
23
+ dotnet-version: 6.0.x
24
25
- name: Setup .NET 5
26
uses: actions/setup-dotnet@v1
@@ -34,4 +39,4 @@ jobs:
34
39
run: dotnet pack -c Release -o out -p:PackageVersion=${{env.PACKAGE_VERSION}} -p:RepositoryUrl=${{env.CURRENT_REPO_URL}}
35
40
36
41
- name: Publish the package to nuget.org
37
- run: dotnet nuget push ./out/*.nupkg --skip-duplicate --no-symbols true -k ${{ secrets.NUGET_AUTH_TOKEN}} -s https://api.nuget.org/v3/index.json
42
+ run: dotnet nuget push ./out/*.nupkg --skip-duplicate --no-symbols true -k ${{ secrets.NUGET_AUTH_TOKEN}} -s https://api.nuget.org/v3/index.json
0 commit comments