Skip to content

Correct release notes and module info #31

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/Prerelease.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Prerelease Drafter
name: Prerelease Build

on:
push:
Expand Down Expand Up @@ -78,4 +78,4 @@ jobs:
- name: Publish ALZ Module
shell: pwsh
run: |
Publish-Module -Path "./ALZ" -NuGetApiKey ${{ secrets.POWERSHELL_GALLERY_KEY }} -Force
Publish-Module -Path "./ALZ" -NuGetApiKey ${{ secrets.POWERSHELL_GALLERY_KEY }} -ReleaseNotes "${{ steps.create_release.outputs.body }}" -Force
2 changes: 1 addition & 1 deletion .github/workflows/PullRequest.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Branch-Build
name: Pull Request Validator
on:
pull_request:
paths-ignore:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/Release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Prerelease Drafter
name: Release Build

on:
workflow_dispatch:
Expand Down Expand Up @@ -74,4 +74,4 @@ jobs:
- name: Publish ALZ Module
shell: pwsh
run: |
Publish-Module -Path "./ALZ" -NuGetApiKey ${{ secrets.POWERSHELL_GALLERY_KEY }}
Publish-Module -Path "./ALZ" -NuGetApiKey ${{ secrets.POWERSHELL_GALLERY_KEY }} -ReleaseNotes "${{ steps.create_release.outputs.body }}" -Force
8 changes: 4 additions & 4 deletions src/ALZ/ALZ.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -107,19 +107,19 @@
)

# A URL to the license for this module.
LicenseUri = 'https://github.com/Azure/ALZ-PowerShell-Module/blob/initial_module_config/LICENSE'
LicenseUri = 'https://github.com/Azure/ALZ-PowerShell-Module/blob/main/LICENSE'

# A URL to the main website for this project.
ProjectUri = 'https://github.com/Azure/ALZ-Powershell-Module'

# A URL to an icon representing this module.
IconUri = 'https://raw.githubusercontent.com/Azure/ALZ-PowerShell-Module/main/docs/rsz_alzlogo.png?token=GHSAT0AAAAAACAOIZ6NBDR7MPRSCNBS3RQUZA4IYUQ'
IconUri = 'https://raw.githubusercontent.com/Azure/ALZ-PowerShell-Module/main/docs/rsz_alzlogo.png'

# ReleaseNotes of this module
ReleaseNotes = 'This is the first release of the ALZ PowerShell Module. This module is currently in preview and is subject to change.'
# ReleaseNotes = 'This is the first release of the ALZ PowerShell Module. This module is currently in preview and is subject to change.'

# Prerelease string of this module
Prerelease = 'beta'
# Prerelease = 'beta'

# Flag to indicate whether the module requires explicit user acceptance for install/update/save
# RequireLicenseAcceptance = $false
Expand Down