Skip to content

Commit

Permalink
fix pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
ariasemis committed Mar 20, 2021
1 parent da57207 commit 0e6c669
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,12 +76,12 @@ jobs:
- name: 🧰 Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: '5.x'
dotnet-version: '5.0.x'
- name: 📦 Download Artifact
uses: actions/download-artifact@v1
with:
name: nupkg
- name: 🚀 Push to GitHub Feed
run: dotnet nuget push ./nupkg/*.nupkg --source $GITHUB_FEED --api-key $GITHUB_KEY
run: dotnet nuget push ./nupkg/*.nupkg --source ${GITHUB_FEED} --skip-duplicate --api-key ${GITHUB_KEY}
- name: 🚀 Push to NuGet Feed
run: dotnet nuget push ./nupkg/*.nupkg --source $NUGET_FEED --skip-duplicate --api-key $NUGET_KEY
run: dotnet nuget push ./nupkg/*.nupkg --source ${NUGET_FEED} --skip-duplicate --api-key ${NUGET_KEY}

0 comments on commit 0e6c669

Please sign in to comment.