diff --git a/.github/workflows/PublishToGallery.yaml b/.github/workflows/PublishToGallery.yaml new file mode 100644 index 0000000..f919a99 --- /dev/null +++ b/.github/workflows/PublishToGallery.yaml @@ -0,0 +1,16 @@ +name: PublishToGallery + +on: + release: + types: [created] +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v6 + - name: Run publish script + env: + NuGetApiKey: ${{ secrets.NuGetApiKey }} + run: .github\workflows\PublishToGallery.ps1 + shell: pwsh