Skip to content

Added github actions to publish to the PowerShell gallery #1

Added github actions to publish to the PowerShell gallery

Added github actions to publish to the PowerShell gallery #1

Workflow file for this run

name: Publish
on:
push:
branches: [ master ]
workflow_dispatch:
jobs:
build:
name: Publish
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Publish
env:
NUGET_API_KEY: ${{ secrets.NUGET_APIKEY }}
run: .\publish.ps1
shell: pwsh