Skip to content

ExRam.Gremlinq 12.8.0 #15

ExRam.Gremlinq 12.8.0

ExRam.Gremlinq 12.8.0 #15

Workflow file for this run

name: Push stable packages
on:
release:
types: [published]
jobs:
push:
runs-on: ubuntu-latest
steps:
- uses: robinraju/release-downloader@a96f54c1b5f5e09e47d9504526e96febd949d4c2 # 1.11
with:
releaseId: ${{ github.event.release.id }}
fileName: "${{ github.event.repository.name }}.*.nupkg"
- name: Push NuGet packages to NuGet.org
run: dotnet nuget push **/${{ github.event.repository.name }}.*.nupkg
--source https://api.nuget.org/v3/index.json
--api-key ${{ secrets.NUGET_DEPLOY_KEY }}
--no-symbols
--skip-duplicate