We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6270612 commit 62552cdCopy full SHA for 62552cd
1 file changed
.github/workflows/Publish.yml
@@ -3,7 +3,7 @@ name: Publish Module
3
on:
4
push:
5
tags:
6
- - '*'
+ - "*"
7
8
workflow_dispatch:
9
@@ -18,8 +18,10 @@ jobs:
18
- name: 📥 Checkout
19
uses: actions/checkout@v4
20
21
- - name: 📦 Install ModuleTools module form PSGallery
22
- run: Install-PSResource -Repository PSGallery -Name ModuleTools -TrustRepository
+ - name: 📦 Install required modules from PSGallery
+ run: |
23
+ Install-PSResource -Repository PSGallery -Name ModuleTools -TrustRepository
24
+ Install-PSResource -Repository PSGallery -Name Microsoft.PowerShell.PlatyPS -TrustRepository
25
26
- name: 🏗️ Build Module
27
run: Invoke-MTBuild -Verbose
@@ -45,4 +47,4 @@ jobs:
45
47
exit 1 # Fail the workflow on error
46
48
}
49
env:
- ApiKey: ${{ secrets.PSGALLERY_API }}
50
+ ApiKey: ${{ secrets.PSGALLERY_API }}
0 commit comments