diff --git a/.github/workflows/publish-templates-staging.yml b/.github/workflows/publish-templates-staging.yml index eb7a377..9da33b6 100644 --- a/.github/workflows/publish-templates-staging.yml +++ b/.github/workflows/publish-templates-staging.yml @@ -29,8 +29,6 @@ jobs: run: dotnet pack --configuration Release --output nupkgs /p:Version=$VERSION - name: Publish NuGet packages - uses: dansiegel/publish-nuget@v1.2 - with: - filename: '**/*.nupkg' - apiKey: ${{ secrets.TEST_NUGET_API_KEY }} - feedUrl: ${{ secrets.TEST_NUGET_FEED_URL }} \ No newline at end of file + working-directory: ${{ env.WORKING_DIRECTORY }} + run: | + dotnet nuget push "**/*.nupkg" --api-key ${{ secrets.TEST_NUGET_API_KEY }} --source secrets.TEST_NUGET_FEED_URL \ No newline at end of file