File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -59,18 +59,18 @@ jobs:
59
59
uses : actions/upload-artifact@v2
60
60
with :
61
61
name : " Marten.AspNetCore.Identity-${{ steps.gitversion.outputs.nuGetVersionV2 }}"
62
- path : /output/*.nupkg
62
+ path : . /output/*.nupkg
63
63
64
64
- name : Upload Package to release
65
65
# if: contains(github.ref, 'main')
66
66
uses : svenstaro/upload-release-action@v1-release
67
67
with :
68
68
repo_token : ${{ secrets.GITHUB_TOKEN }}
69
69
file_glob : true
70
- file : /output/*.nupkg
70
+ file : . /output/*.nupkg
71
71
tag : " ${{ steps.gitversion.outputs.fullSemVer }}"
72
72
overwrite : true
73
73
74
74
- name : Upload Package to nuget
75
75
# if: contains(github.ref, 'main')
76
- run : dotnet nuget push output/*.nupkg --source $NUGET_FEED --skip-duplicate --api-key ${{ secrets.NUGET_KEY }}
76
+ run : dotnet nuget push ./ output/*.nupkg --source $NUGET_FEED --skip-duplicate --api-key ${{ secrets.NUGET_KEY }}
You can’t perform that action at this time.
0 commit comments