Skip to content

Commit

Permalink
Fixes push github
Browse files Browse the repository at this point in the history
  • Loading branch information
lillo42 committed Feb 11, 2020
1 parent 07ce13a commit 8dab6c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ jobs:
- name: Pack
run: dotnet pack ./src/Mozilla.IoT.WebThing -c Release --include-source -o ./artifacts/pack -p:PackageVersion=${{env.RELEASE_VERSION}}
- name: Publish to Nuget
run: dotnet nuget push ./artifacts/pack/*.nupkg -k ${{secrets.NUGET_TOKEN}} -s https://api.nuget.org/v3/index.json
run: dotnet nuget push ../artifacts/pack/*.nupkg -k ${{secrets.NUGET_TOKEN}} -s https://api.nuget.org/v3/index.json
- name: Publish to Github
run: dotnet nuget push ./artifacts/pack/*.nupkg -k ${{secrets.NUGET_TOKEN}} -s "github"
run: dotnet nuget push ./artifacts/pack/*.nupkg -k ${{secrets.GITHUB_TOKEN}} -s https://nuget.pkg.github.com/${{github.repository}}/index.json
- name: Archive Nuget pack
uses: actions/upload-artifact@v1
with:
Expand Down

0 comments on commit 8dab6c6

Please sign in to comment.