Skip to content

Commit 7aa3d42

Browse files
committed
fix: update module version to 4.0.0.9 and ensure code signing action is included in publish workflow
1 parent b5ba54b commit 7aa3d42

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

.github/workflows/publishpackage.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,15 @@ jobs:
1212
runs-on: windows-latest
1313
steps:
1414
- uses: actions/checkout@v4
15+
- uses: dlemstra/code-sign-action@v1
16+
with:
17+
certificate: ${{ secrets.CERTIFICATE }}
18+
password: ${{ secrets.CERTIFICATE_PASSWORD }}
19+
folder: .
20+
recursive: true
21+
files: |
22+
*.ps1
23+
*.psm1
1524
- name: Validate and publish module
1625
shell: pwsh
1726
run: |

code365scripts.openai/code365scripts.openai.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
RootModule = '.\code365scripts.openai.psm1'
1313

1414
# Version number of this module.
15-
ModuleVersion = '4.0.0.8'
15+
ModuleVersion = '4.0.0.9'
1616

1717
# Supported PSEditions
1818
CompatiblePSEditions = @("Desktop", "Core")

0 commit comments

Comments
 (0)