We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a867293 commit a8201b1Copy full SHA for a8201b1
.github/workflows/build_test_deploy.yml
@@ -56,7 +56,8 @@ jobs:
56
uses: actions/upload-artifact@v2
57
with:
58
name: "Marten.AspNetCore.Identity-${{ steps.gitversion.outputs.nuGetVersionV2 }}"
59
- path: source/output/*.*
+ # Does not support current "working-directory" settings
60
+ path: source/output/*.nupkg
61
if-no-files-found: error
62
63
- name: Upload Package to release
@@ -65,7 +66,8 @@ jobs:
65
66
67
repo_token: ${{ secrets.GITHUB_TOKEN }}
68
file_glob: true
- file: ./output/*.nupkg
69
70
+ file: source/output/*.nupkg
71
tag: "${{ steps.gitversion.outputs.fullSemVer }}"
72
overwrite: true
73
0 commit comments