Skip to content

[0.8.1] 2026-06-03

[0.8.1] 2026-06-03 #11

Workflow file for this run

name: Publish
on:
workflow_dispatch:
release:
types: [published]
permissions:
contents: read
jobs:
publish:
name: Publish
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Publish
shell: pwsh
run: |
$apiKey = '${{ secrets.PSGALLERY_API_KEY }}' | ConvertTo-SecureString -AsPlainText -Force
$cred = [pscredential]::new('apikey', $apiKey)
./build.ps1 -Task Publish -PSGalleryApiKey $cred -Bootstrap