Skip to content

Commit 07c13e4

Browse files
authored
Merge pull request #5 from AsBuiltReport/dev
v1.1.2 release
2 parents f521811 + e113510 commit 07c13e4

File tree

6 files changed

+58
-53
lines changed

6 files changed

+58
-53
lines changed

.github/workflows/Release.yml

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,30 @@ 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
24+
tweet:
25+
runs-on: ubuntu-latest
26+
steps:
27+
- uses: Eomm/why-don-t-you-tweet@v1
28+
# We don't want to tweet if the repository is not a public one
29+
if: ${{ !github.event.repository.private }}
30+
with:
31+
# GitHub event payload
32+
# https://docs.github.com/en/developers/webhooks-and-events/webhooks/webhook-events-and-payloads#release
33+
tweet-message: "[New Release] ${{ github.event.repository.name }} ${{ github.event.release.tag_name }}! Check out what's new! ${{ github.event.release.html_url }} #VMware #ESXi #AsBuiltReport # #vExpert"
34+
env:
35+
TWITTER_CONSUMER_API_KEY: ${{ secrets.TWITTER_CONSUMER_API_KEY }}
36+
TWITTER_CONSUMER_API_SECRET: ${{ secrets.TWITTER_CONSUMER_API_SECRET }}
37+
TWITTER_ACCESS_TOKEN: ${{ secrets.TWITTER_ACCESS_TOKEN }}
38+
TWITTER_ACCESS_TOKEN_SECRET: ${{ secrets.TWITTER_ACCESS_TOKEN_SECRET }}

.vscode/launch.json

Lines changed: 0 additions & 27 deletions
This file was deleted.

AsBuiltReport.VMware.ESXi.psd1

0 Bytes
Binary file not shown.

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,19 @@
11
# :arrows_counterclockwise: AsBuiltReport.VMware.ESXi Changelog
22

3+
## [[1.1.2](https://github.com/AsBuiltReport/AsBuiltReport.VMware.ESXi/releases/tag/v1.1.2)] - 2022-03-24
4+
5+
### Added
6+
- Automated tweet release workflow
7+
8+
### Fixed
9+
- Fix hostname in virtual switch report section
10+
- Fix colour placeholders in `README.md`
11+
312
## [[1.1.0](https://github.com/AsBuiltReport/AsBuiltReport.VMware.ESXi/releases/tag/v1.1.0)] - 2021-10-09
413

514
### Added
615
- PowerShell 7 compatibility
7-
- PSScriptAnalyzer & PublishPSModule GitHub Action workflows
16+
- PSScriptAnalyzer & Release GitHub Action workflows
817
- VMHost network adapter LLDP reporting
918
- NSX TCP/IP stacks for VMkernel Adpater reporting
1019
- Include release and issue links in `CHANGELOG.md`

0 commit comments

Comments
 (0)