Skip to content

v0.11.0

v0.11.0 #8

Workflow file for this run

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