File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 2727 os : [ ubuntu-latest, windows-latest ]
2828 steps :
2929 - name : Checkout
30- uses : actions/checkout@v2
30+ uses : actions/checkout@v3
3131 - run : git fetch --unshallow
3232 - name : Setup .NET Core 3.1
3333 uses : actions/setup-dotnet@v3
6464 run : dotnet pack -v normal -c Release --no-restore --no-build -p:PackageVersion=${{ steps.gitversion.outputs.nuGetVersionV2 }}-${{ steps.gitversion.outputs.CommitsSinceVersionSourcePadded }} ./SharpHelpers/SharpHelpers.sln
6565 - name : Upload Artifact
6666 if : matrix.os == 'ubuntu-latest'
67- uses : actions/upload-artifact@v2
67+ uses : actions/upload-artifact@v3
6868 with :
6969 name : nupkg
7070 path : ./SharpHelpers/${{ env.PROJECT_NAME }}/bin/Release/*.nupkg
@@ -80,13 +80,13 @@ jobs:
8080 - name : Display structure of downloaded files
8181 run : ls -R
8282 - name : Publish the package to GitHub
83- run : dotnet nuget push *.nupkg
83+ run : dotnet nuget push " *.nupkg"
8484 deploy :
8585 needs : build
8686 if : github.event_name == 'release' && startsWith(github.ref, 'refs/heads/v')
8787 runs-on : ubuntu-latest
8888 steps :
89- - uses : actions/checkout@v2
89+ - uses : actions/checkout@v3
9090 - name : Setup .NET Core
9191 uses : actions/setup-dotnet@v3
9292 with :
You can’t perform that action at this time.
0 commit comments