Skip to content

Commit 5e34b2f

Browse files
committed
WIP Workflow
1 parent 88a86c2 commit 5e34b2f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build_test_deploy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,18 +59,18 @@ jobs:
5959
uses: actions/upload-artifact@v2
6060
with:
6161
name: "Marten.AspNetCore.Identity-${{ steps.gitversion.outputs.nuGetVersionV2 }}"
62-
path: /output/*.nupkg
62+
path: ./output/*.nupkg
6363

6464
- name: Upload Package to release
6565
# if: contains(github.ref, 'main')
6666
uses: svenstaro/upload-release-action@v1-release
6767
with:
6868
repo_token: ${{ secrets.GITHUB_TOKEN }}
6969
file_glob: true
70-
file: /output/*.nupkg
70+
file: ./output/*.nupkg
7171
tag: "${{ steps.gitversion.outputs.fullSemVer }}"
7272
overwrite: true
7373

7474
- name: Upload Package to nuget
7575
# if: contains(github.ref, 'main')
76-
run: dotnet nuget push output/*.nupkg --source $NUGET_FEED --skip-duplicate --api-key ${{ secrets.NUGET_KEY }}
76+
run: dotnet nuget push ./output/*.nupkg --source $NUGET_FEED --skip-duplicate --api-key ${{ secrets.NUGET_KEY }}

0 commit comments

Comments
 (0)