Skip to content

Commit bdb2777

Browse files
committed
More fixes to Actions
1 parent 5a84e29 commit bdb2777

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/dotnetcore.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ jobs:
1818
- name: Setup nuget config
1919
run: sed 's/GITHUB_TOKEN/${{ secrets.RegistryToken }}/g' .nuget.config > nuget.config
2020

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

.github/workflows/pushnuget.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ jobs:
2020
- name: Setup nuget config
2121
run: sed 's/GITHUB_TOKEN/${{ secrets.RegistryToken }}/g' .nuget.config > nuget.config
2222

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

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

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

0 commit comments

Comments
 (0)