-
-
Notifications
You must be signed in to change notification settings - Fork 67
47 lines (42 loc) · 1.28 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
name: 'Publish module'
on:
push:
# branches:
# - main
tags:
- "v*.*"
jobs:
publish-module:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install and cache PowerShell modules
id: psmodulecache
uses: potatoqualitee/[email protected]
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 }}
# Push the updated module to the PowerShell Gallery
- name: Push module to PowerShell Gallery
shell: pwsh
run: |
$params = @{
Path = "${{ github.workspace }}/Evergreen"
NuGetApiKey = "${{ secrets.NUGETAPIKEY }}"
ErrorAction = "Stop"
}
Publish-Module @params