Skip to content
This repository was archived by the owner on Feb 17, 2025. It is now read-only.

Commit fa3a4ee

Browse files
committed
push nuget
1 parent 8e572c1 commit fa3a4ee

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/dotnet.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,14 +50,14 @@ jobs:
5050
- name: Build
5151
run: dotnet build --no-restore --configuration Release
5252
- name: Pack Rc
53-
run: dotnet pack -c Release -p:IncludeSymbols=true -p:SymbolPackageFormat=snupkg -p:VersionPrefix=${{ github.run_number }}-rc -o /nupkgrc
53+
run: dotnet pack -c Release -p:IncludeSymbols=true -p:SymbolPackageFormat=snupkg -p:VersionPrefix=${{ github.run_number }}-rc -o \nupkgrc
5454
if: github.ref == 'refs/heads/develop'
5555
- name: Pack
56-
run: dotnet pack -c Release -p:IncludeSymbols=true -p:SymbolPackageFormat=snupkg -p:VersionPrefix=${{ github.run_number }} -o /nupkg
56+
run: dotnet pack -c Release -p:IncludeSymbols=true -p:SymbolPackageFormat=snupkg -p:VersionPrefix=${{ github.run_number }} -o \nupkg
5757
if: github.ref == 'refs/heads/master'
5858
- name: Push Rc
59-
run: dotnet nuget push /nupkgrc/*.nupkg -k ${{ secrets.ODATA_NUGET_KEY }} -s https://api.nuget.org/v3/index.json
59+
run: dotnet nuget push \nupkgrc/*.nupkg -k ${{ secrets.ODATA_NUGET_KEY }} -s https://api.nuget.org/v3/index.json
6060
if: github.ref == 'refs/heads/develop'
6161
- name: Push
62-
run: dotnet nuget push /nupkg/*.nupkg -k ${{ secrets.ODATA_NUGET_KEY }} -s https://api.nuget.org/v3/index.json
62+
run: dotnet nuget push \nupkg/*.nupkg -k ${{ secrets.ODATA_NUGET_KEY }} -s https://api.nuget.org/v3/index.json
6363
if: github.ref == 'refs/heads/master'

0 commit comments

Comments
 (0)