Skip to content

Commit a8201b1

Browse files
committed
WIP Workflow
1 parent a867293 commit a8201b1

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/build_test_deploy.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,8 @@ jobs:
5656
uses: actions/upload-artifact@v2
5757
with:
5858
name: "Marten.AspNetCore.Identity-${{ steps.gitversion.outputs.nuGetVersionV2 }}"
59-
path: source/output/*.*
59+
# Does not support current "working-directory" settings
60+
path: source/output/*.nupkg
6061
if-no-files-found: error
6162

6263
- name: Upload Package to release
@@ -65,7 +66,8 @@ jobs:
6566
with:
6667
repo_token: ${{ secrets.GITHUB_TOKEN }}
6768
file_glob: true
68-
file: ./output/*.nupkg
69+
# Does not support current "working-directory" settings
70+
file: source/output/*.nupkg
6971
tag: "${{ steps.gitversion.outputs.fullSemVer }}"
7072
overwrite: true
7173

0 commit comments

Comments
 (0)