Skip to content

Commit c215fd3

Browse files
committed
v1.3.2 release
### Added - Automated tweet release workflow ### Fixed - Fix colour placeholders in `README.md`
1 parent b440019 commit c215fd3

File tree

4 files changed

+70
-47
lines changed

4 files changed

+70
-47
lines changed

.github/workflows/Release.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,18 @@ jobs:
1313
shell: pwsh
1414
run: |
1515
Publish-Module -Path ./ -NuGetApiKey ${{ secrets.PSGALLERY_API_KEY }} -Verbose
16+
tweet:
17+
runs-on: ubuntu-latest
18+
steps:
19+
- uses: Eomm/why-don-t-you-tweet@v1
20+
# We don't want to tweet if the repository is not a public one
21+
if: ${{ !github.event.repository.private }}
22+
with:
23+
# GitHub event payload
24+
# https://docs.github.com/en/developers/webhooks-and-events/webhooks/webhook-events-and-payloads#release
25+
tweet-message: "[New Release] ${{ github.event.repository.name }} ${{ github.event.release.tag_name }}! Check out what's new! ${{ github.event.release.html_url }} #VMware #vSphere #AsBuiltReport #vExpert"
26+
env:
27+
TWITTER_CONSUMER_API_KEY: ${{ secrets.TWITTER_CONSUMER_API_KEY }}
28+
TWITTER_CONSUMER_API_SECRET: ${{ secrets.TWITTER_CONSUMER_API_SECRET }}
29+
TWITTER_ACCESS_TOKEN: ${{ secrets.TWITTER_ACCESS_TOKEN }}
30+
TWITTER_ACCESS_TOKEN_SECRET: ${{ secrets.TWITTER_ACCESS_TOKEN_SECRET }}

AsBuiltReport.VMware.vSphere.psd1

Lines changed: 2 additions & 2 deletions
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.1'
15+
ModuleVersion = '1.3.2'
1616

1717
# Supported PSEditions
1818
# CompatiblePSEditions = 'Desktop'
@@ -51,7 +51,7 @@
5151
RequiredModules = @(
5252
@{
5353
ModuleName = 'AsBuiltReport.Core';
54-
ModuleVersion = '1.1.0'
54+
ModuleVersion = '1.2.0'
5555
}
5656
)
5757

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
1-
# :arrows_counterclockwise: VMware vSphere As Built Report Changelog
1+
# :arrows_clockwise: VMware vSphere As Built Report Changelog
2+
3+
## [[1.3.2](https://github.com/AsBuiltReport/AsBuiltReport.VMware.vSphere/releases/tag/v1.3.2] - 2022-03-24
4+
5+
### Added
6+
- Automated tweet release workflow
7+
8+
### Fixed
9+
- Fix colour placeholders in `README.md`
210

311
## [[1.3.1](https://github.com/AsBuiltReport/AsBuiltReport.VMware.vSphere/releases/tag/v1.3.1)] - 2021-09-03
412

0 commit comments

Comments
 (0)