Skip to content

Merge pull request #10 from robinmalik/development #6

Merge pull request #10 from robinmalik/development

Merge pull request #10 from robinmalik/development #6

Workflow file for this run

name: Publish PowerShell Module
on:
push:
branches:
- "main"
jobs:
publish-to-gallery:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build and publish
env:
NUGET_KEY: ${{ secrets.NUGET_KEY }}
shell: pwsh
run: |
echo "The current path is: $($pwd.path)"
Publish-Module -Path "./Source" -NuGetApiKey $env:NUGET_KEY -Verbose