NetboxPS/.github/workflows/release.yml
Alexis La Goutte 42b00279cb
Add release.(yml) Github Actions (#21)
It will push on PSGallery module when release a new version !
2021-07-23 16:12:46 -04: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 }}"