Skip to content

Commit

Permalink
v1.0.2 release
Browse files Browse the repository at this point in the history
### 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)
  • Loading branch information
tpcarman committed Oct 19, 2022
1 parent 5a6d077 commit 2bd4bcc
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 9 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/Release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ jobs:
run: |
Publish-Module -Path ./ -NuGetApiKey ${{ secrets.PSGALLERY_API_KEY }} -Verbose
tweet:
needs: publish-to-gallery
runs-on: ubuntu-latest
steps:
- uses: Eomm/why-don-t-you-tweet@v1
Expand All @@ -34,7 +35,7 @@ jobs:
with:
# GitHub event payload
# https://docs.github.com/en/developers/webhooks-and-events/webhooks/webhook-events-and-payloads#release
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"
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"
env:
TWITTER_CONSUMER_API_KEY: ${{ secrets.TWITTER_CONSUMER_API_KEY }}
TWITTER_CONSUMER_API_SECRET: ${{ secrets.TWITTER_CONSUMER_API_SECRET }}
Expand Down
Binary file modified AsBuiltReport.Rubrik.CDM.psd1
Binary file not shown.
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Rubrik CDM As Built Report Changelog
# :arrows_clockwise: Rubrik CDM As Built Report Changelog

## Unreleased
## [1.0.2] - 2022-10-19

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

### Fixed
* Fixes [#21](https://github.com/AsBuiltReport/AsBuiltReport.Rubrik.CDM/issues/21)

## [1.0.1]

### Added
Expand Down
7 changes: 1 addition & 6 deletions Src/Public/Invoke-AsBuiltReport.Rubrik.CDM.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ function Invoke-AsBuiltReport.Rubrik.CDM {
.DESCRIPTION
Documents the configuration of the Rubrik CDM in Word/HTML/XML/Text formats using PScribo.
.NOTES
Version: 1.0.1
Version: 1.0.2
Author: Mike Preston
Twitter: @mwpreston
Github: mwpreston
Expand All @@ -26,11 +26,6 @@ function Invoke-AsBuiltReport.Rubrik.CDM {
$InfoLevel = $ReportConfig.InfoLevel
$Options = $ReportConfig.Options

# If custom style not set, use default style
if (!$StylePath) {
& "$PSScriptRoot\..\..\AsBuiltReport.Rubrik.CDM.Style.ps1"
}

#region Script Functions
#---------------------------------------------------------------------------------------------#
# SCRIPT FUNCTIONS #
Expand Down

0 comments on commit 2bd4bcc

Please sign in to comment.