Skip to content

Commit 295420f

Browse files
authored
Merge pull request #95 from AsBuiltReport/dev
v1.3.3.1 release
2 parents 4a21bfb + 84d60c3 commit 295420f

File tree

3 files changed

+15
-4
lines changed

3 files changed

+15
-4
lines changed

.github/workflows/Release.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,15 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- uses: actions/checkout@v2
12-
- name: Publish
12+
- name: Set PSRepository to Trusted for PowerShell Gallery
13+
shell: pwsh
14+
run: |
15+
Set-PSRepository -Name PSGallery -InstallationPolicy Trusted
16+
- name: Install AsBuiltReport.Core module
17+
shell: pwsh
18+
run: |
19+
Install-Module -Name AsBuiltReport.Core -Repository PSGallery -Force
20+
- name: Publish module to PowerShell Gallery
1321
shell: pwsh
1422
run: |
1523
Publish-Module -Path ./ -NuGetApiKey ${{ secrets.PSGALLERY_API_KEY }} -Verbose

AsBuiltReport.VMware.vSphere.psd1

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

1414
# Version number of this module.
15-
ModuleVersion = '1.3.3'
15+
ModuleVersion = '1.3.3.1'
1616

1717
# Supported PSEditions
1818
# CompatiblePSEditions = 'Desktop'

CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
# :arrows_clockwise: VMware vSphere As Built Report Changelog
22

3-
## [[1.3.3](https://github.com/AsBuiltReport/AsBuiltReport.VMware.vSphere/releases/tag/v1.3.3)] - 2022-04-21
3+
## [[1.3.3.1](https://github.com/AsBuiltReport/AsBuiltReport.VMware.vSphere/releases/tag/v1.3.3.1)] - 2022-04-21
44

55
### Added
6-
- Added VMHost IPMI / BMC configuration information
6+
- Add VMHost IPMI / BMC configuration information
7+
8+
### Fixed
9+
- Fix GitHub Action release workflow
710

811
## [[1.3.2](https://github.com/AsBuiltReport/AsBuiltReport.VMware.vSphere/releases/tag/v1.3.2)] - 2022-03-24
912

0 commit comments

Comments
 (0)