Skip to content

Commit

Permalink
Merge pull request #32 from MikeAmputer/kravtsov/templates-push-nuget…
Browse files Browse the repository at this point in the history
…-org

Push templates to nuget org
  • Loading branch information
MikeAmputer authored May 24, 2024
2 parents 8feab60 + be5e8f6 commit d28468b
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/release-templates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,16 @@ jobs:
with:
name: templates-package
path: src/ClickHouse.Facades.Templates/bin/Release/ClickHouse.Facades.Templates.${{ github.event.inputs.version }}.nupkg

push-nuget-org:
runs-on: ubuntu-latest
needs: [build]
name: Push to NuGet.org
steps:
- name: Download Artifact
uses: actions/download-artifact@v4
with:
name: templates-package

- name: Push Package
run: dotnet nuget push ClickHouse.Facades.Templates.*.nupkg --skip-duplicate --api-key ${{ secrets.NUGET_ORG_API_KEY }} --source https://api.nuget.org/v3/index.json

0 comments on commit d28468b

Please sign in to comment.