We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fdb00ad + b014a76 commit 06d4f2cCopy full SHA for 06d4f2c
.github/workflows/build.yml
@@ -36,7 +36,7 @@ jobs:
36
./build.sh -t pack -c release
37
38
- name: Upload nupkg
39
- uses: actions/upload-artifact@v1
+ uses: actions/upload-artifact@v4.4.0
40
with:
41
name: nuget
42
path: build
@@ -52,12 +52,12 @@ jobs:
52
if: ${{ github.ref == 'refs/heads/master' || contains(github.ref, 'releases') }}
53
steps:
54
- name: Download nupkg
55
- uses: actions/download-artifact@v1
+ uses: actions/download-artifact@v4.1.7
56
57
58
59
- name: Push to GitHub feed
60
- run: dotnet nuget push nuget/*.nupkg
+ run: dotnet nuget push *.nupkg
61
--api-key "${{secrets.GITHUB_TOKEN}}"
62
--source "https://nuget.pkg.github.com/${{github.repository_owner}}/"
63
--skip-duplicate
0 commit comments