Skip to content

Commit

Permalink
More fixes to Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
monoman committed Jan 16, 2020
1 parent 5a84e29 commit bdb2777
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dotnetcore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ jobs:
- name: Setup nuget config
run: sed 's/GITHUB_TOKEN/${{ secrets.RegistryToken }}/g' .nuget.config > nuget.config

- name: Test with dotnet
- name: Build with dotnet
run: dotnet build --configuration Release -v:m | grep -v 'NAME_UNKNOWN:Package'
4 changes: 2 additions & 2 deletions .github/workflows/pushnuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ jobs:
- name: Setup nuget config
run: sed 's/GITHUB_TOKEN/${{ secrets.RegistryToken }}/g' .nuget.config > nuget.config

- name: Test with dotnet
- name: Build with dotnet
run: dotnet build --configuration Release -v:m | grep -v 'NAME_UNKNOWN:Package'

- name: Pack nuget
run: dotnet pack -o `pwd`/.nugets --configuration Release --no-build -v:m

- name: Push nuget
run: dotnet nuget push `pwd`/.nugets/*.nupkg -s https://nuget.pkg.github.com/interlockledger/index.json --skip-duplicate
run: dotnet nuget push `pwd`/.nugets/*.nupkg -s GitHub --skip-duplicate

0 comments on commit bdb2777

Please sign in to comment.