Skip to content

📚 Create External Help #41

📚 Create External Help

📚 Create External Help #41

name: 📚 Create External Help
on:
pull_request:
#push:
workflow_dispatch:
jobs:
package_help:
# The New-ExternalHelpCab cmdlet uses makecab, which depends on Windows
runs-on: windows-latest
steps:
- name: ✅ Checkout Repository
uses: actions/checkout@v4
- name: 📁 Display the Path
shell: pwsh
run: echo ${env:PATH}
- name: 🔢 Display the Version
shell: pwsh
run: $PSVersionTable
- name: 📖 Create and Package External PowerShell Help
shell: pwsh
run: |
Install-Module -Name PlatyPS -Scope CurrentUser -Force
Import-Module -Name PlatyPS
Copy-Item ".\src\Artifacts\en-US\PSPreworkout-help.xml" ".\Help\en-US"
$params = @{
CabFilesFolder = ".\Help\en-US"
LandingPagePath = ".\docs\PSPreworkout.md"
OutputFolder = ".\Help\en-US"
}
New-ExternalHelpCab @params
# Can I add a separate batch of jobs that runs on Ubuntu within this same workflow?
# git-auto-commit-action only runs on Linux-based platforms.
#- name: 💾 Commit Changes
# uses: stefanzweifel/git-auto-commit-action@v5
# with:
# commit_message: 'Create and package external help.'