We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e78078c commit 9ff0159Copy full SHA for 9ff0159
.github/workflows/publish-powershellgallery.yml
@@ -0,0 +1,14 @@
1
+name: PSGallery
2
+on:
3
+ release:
4
+ types: [published]
5
+jobs:
6
+ publish_psgallery:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - name: checkout
10
+ uses: actions/checkout@v2
11
+ - name: Publishing
12
+ run: |
13
+ Publish-Script -Path $(Get-ChildItem -Path . -Filter "*.ps1" | Select-Object -ExpandProperty Name) -NuGetApiKey ${{ secrets.PSGALLERY }}
14
+ shell: pwsh
0 commit comments