Skip to content

Commit 73fcf66

Browse files
authored
Merge pull request #6 from Apibim-com/bugfix/cd_workflow
Fixed bug
2 parents 6768e46 + c62fb75 commit 73fcf66

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

.github/workflows/cd.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,7 @@ jobs:
3030
run: dotnet build Revit.Extensions/Revit.Extensions.csproj -p:Configuration=${{ matrix.configuration }} --no-restore
3131

3232
- name: Pack
33-
run: dotnet pack Revit.Extensions/Revit.Extensions.csproj -p:Configuration=${{ matrix.configuration }} --no-build --output ./nupkgs
33+
run: dotnet pack Revit.Extensions/Revit.Extensions.csproj -p:Configuration=${{ matrix.configuration }} --no-build --output ${{ github.workspace }}/nupkgs
3434

3535
- name: Push to NuGet
36-
shell: bash
37-
run: dotnet nuget push "Revit.Extensions/nupkgs/*.nupkg" --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json --skip-duplicate
36+
run: dotnet nuget push "${{ github.workspace }}/nupkgs/*.nupkg" --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json --skip-duplicate

0 commit comments

Comments
 (0)