Skip to content

Commit 48ccb06

Browse files
authored
Update wfnetcorev2.yaml
1 parent 1d7571c commit 48ccb06

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/wfnetcorev2.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
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
@@ -64,7 +64,7 @@ jobs:
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:

0 commit comments

Comments
 (0)