Skip to content
This repository has been archived by the owner on May 3, 2024. It is now read-only.

Commit

Permalink
Fix package push
Browse files Browse the repository at this point in the history
  • Loading branch information
enclave-alistair committed Dec 20, 2022
1 parent 0df9203 commit 9898799
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ jobs:
uses: gittools/actions/gitversion/[email protected]

- name: Setup .NET 6 (SDK)
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
dotnet-version: 6.0.x
source-url: https://nuget.pkg.github.com/enclave-networks/index.json
env:
NUGET_AUTH_TOKEN: ${{github.token}}
Expand All @@ -39,7 +39,7 @@ jobs:

- name: Push Github Source Packages
if: github.event_name == 'push'
run: dotnet nuget push src/**/*${{ steps.gitversion.outputs.SemVer }}.nupkg --api-key ${{github.token}} -s https://nuget.pkg.github.com/enclave-networks/index.json --skip-duplicate --no-symbols true
run: dotnet nuget push src/**/*${{ steps.gitversion.outputs.SemVer }}.nupkg --api-key ${{github.token}} -s https://nuget.pkg.github.com/enclave-networks/index.json --skip-duplicate --no-symbols

- name: Create Release
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
Expand Down

0 comments on commit 9898799

Please sign in to comment.