NetboxPS/.github/workflows/release.yml
Alexis La Goutte bbd131221b Add release.(yml) Github Actions
It will push on PSGallery module when release a new version !
2021-07-23 21:24:27 +02:00

16 lines
276 B
YAML

name: Release
on:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Publish
run: |
pwsh -Command "Publish-Module -Path ./NetboxPS -NuGetApiKey ${{ secrets.PSGALLERY_API_KEY }}"