-
-
Notifications
You must be signed in to change notification settings - Fork 18
52 lines (46 loc) · 1.46 KB
/
publish-module.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
name: Publish module to PowerShell Gallery
on:
push:
tags:
- "v*.*.*"
jobs:
publish-module:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install and cache PowerShell modules
id: psmodulecache
uses: potatoqualitee/psmodulecache@v6.2
with:
modules-to-cache: PowerShellGet
shell: pwsh
# Import GPG key so that we can sign the commit
- name: Import GPG key
id: import_gpg
uses: crazy-max/ghaction-import-gpg@v6
with:
gpg_private_key: ${{ secrets.GPGKEY }}
passphrase: ${{ secrets.GPGPASSPHRASE }}
git_user_signingkey: true
git_commit_gpgsign: true
git_config_global: true
git_tag_gpgsign: true
git_push_gpgsign: false
git_committer_name: ${{ secrets.COMMIT_NAME }}
git_committer_email: ${{ secrets.COMMIT_EMAIL }}
# Create release
- name: Create release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
prerelease: false
# Push the updated module to the PowerShell Gallery
- name: Push module to PowerShell Gallery
shell: pwsh
run: |
$params = @{
Path = "${{ github.workspace }}/VcRedist"
NuGetApiKey = "${{ secrets.NUGETAPIKEY }}"
ErrorAction = "Stop"
}
Publish-Module @params