Skip to content

Commit c9d8c57

Browse files
committed
workflow fix
1 parent aa0844e commit c9d8c57

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/build-test-publish.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,17 +30,17 @@ jobs:
3030
# run: dotnet test -c Release --no-restore --no-build -v normal
3131

3232
- name: Pack NuGet Package(s)
33-
run: dotnet pack -c Release --no-restore --no-build --output ~/nuget-packages
33+
run: dotnet pack -c Release --no-restore --no-build --output .\nuget-packages
3434

3535
- name: Upload Build Artifact(s)
3636
uses: actions/upload-artifact@v4
3737
with:
3838
name: nuget-packages
39-
path: ~/nuget-packages
39+
path: .\nuget-packages
4040

4141
# - name: Push NuGet Package(s)
4242
# run: |
43-
# dotnet nuget push ~/nuget-packages/*.nupkg \
44-
# --source https://api.nuget.org/v3/index.json \
45-
# --api-key ${{ secrets.NUGET_API_KEY }} \
43+
# dotnet nuget push .\nuget-packages\*.nupkg `
44+
# --source https://api.nuget.org/v3/index.json `
45+
# --api-key ${{ secrets.NUGET_API_KEY }} `
4646
# --skip-duplicate

0 commit comments

Comments
 (0)