Skip to content

Commit 2bd4bcc

Browse files
committed
v1.0.2 release
### Changed * Added new `Token` parameter to support the ability to connect with an API Token * Changed Required Modules to AsBuiltReport.Core v1.2.0 * Removed `StylePath` parameter from `Invoke-AsBuiltReport.Rubrik.CDM.ps1` ### Added * Added GitHub workflow for release actions ### Fixed * Fixes [#21](#21)
1 parent 5a6d077 commit 2bd4bcc

File tree

4 files changed

+8
-9
lines changed

4 files changed

+8
-9
lines changed

.github/workflows/Release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ jobs:
2626
run: |
2727
Publish-Module -Path ./ -NuGetApiKey ${{ secrets.PSGALLERY_API_KEY }} -Verbose
2828
tweet:
29+
needs: publish-to-gallery
2930
runs-on: ubuntu-latest
3031
steps:
3132
- uses: Eomm/why-don-t-you-tweet@v1
@@ -34,7 +35,7 @@ jobs:
3435
with:
3536
# GitHub event payload
3637
# https://docs.github.com/en/developers/webhooks-and-events/webhooks/webhook-events-and-payloads#release
37-
tweet-message: "[New Release] ${{ github.event.repository.name }} ${{ github.event.release.tag_name }}! Check out what's new! ${{ github.event.release.html_url }} #Rubrik #AsBuiltReport #PowerShell"
38+
tweet-message: "[New Release] ${{ github.event.repository.name }} ${{ github.event.release.tag_name }}! Check out what's new! ${{ github.event.release.html_url }} #Rubrik #AsBuiltReport #PowerShell #DataProtection"
3839
env:
3940
TWITTER_CONSUMER_API_KEY: ${{ secrets.TWITTER_CONSUMER_API_KEY }}
4041
TWITTER_CONSUMER_API_SECRET: ${{ secrets.TWITTER_CONSUMER_API_SECRET }}

AsBuiltReport.Rubrik.CDM.psd1

0 Bytes
Binary file not shown.

CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Rubrik CDM As Built Report Changelog
1+
# :arrows_clockwise: Rubrik CDM As Built Report Changelog
22

3-
## Unreleased
3+
## [1.0.2] - 2022-10-19
44

55
### Changed
66
* Added new `Token` parameter to support the ability to connect with an API Token
@@ -10,6 +10,9 @@
1010
### Added
1111
* Added GitHub workflow for release actions
1212

13+
### Fixed
14+
* Fixes [#21](https://github.com/AsBuiltReport/AsBuiltReport.Rubrik.CDM/issues/21)
15+
1316
## [1.0.1]
1417

1518
### Added

Src/Public/Invoke-AsBuiltReport.Rubrik.CDM.ps1

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ function Invoke-AsBuiltReport.Rubrik.CDM {
55
.DESCRIPTION
66
Documents the configuration of the Rubrik CDM in Word/HTML/XML/Text formats using PScribo.
77
.NOTES
8-
Version: 1.0.1
8+
Version: 1.0.2
99
Author: Mike Preston
1010
Twitter: @mwpreston
1111
Github: mwpreston
@@ -26,11 +26,6 @@ function Invoke-AsBuiltReport.Rubrik.CDM {
2626
$InfoLevel = $ReportConfig.InfoLevel
2727
$Options = $ReportConfig.Options
2828

29-
# If custom style not set, use default style
30-
if (!$StylePath) {
31-
& "$PSScriptRoot\..\..\AsBuiltReport.Rubrik.CDM.Style.ps1"
32-
}
33-
3429
#region Script Functions
3530
#---------------------------------------------------------------------------------------------#
3631
# SCRIPT FUNCTIONS #

0 commit comments

Comments
 (0)