Skip to content

Commit 48b0965

Browse files
authored
Correct release notes and module info (#31)
# Pull Request ## Issue #29 #30 ## Description Correcting workflow names not publiushing in beta anymore and adding release notes ## License By submitting this pull request, I confirm that my contribution is made under the terms of the projects associated license.
1 parent d2a3c54 commit 48b0965

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/Prerelease.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Prerelease Drafter
1+
name: Prerelease Build
22

33
on:
44
push:
@@ -78,4 +78,4 @@ jobs:
7878
- name: Publish ALZ Module
7979
shell: pwsh
8080
run: |
81-
Publish-Module -Path "./ALZ" -NuGetApiKey ${{ secrets.POWERSHELL_GALLERY_KEY }} -Force
81+
Publish-Module -Path "./ALZ" -NuGetApiKey ${{ secrets.POWERSHELL_GALLERY_KEY }} -ReleaseNotes "${{ steps.create_release.outputs.body }}" -Force

.github/workflows/PullRequest.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Branch-Build
1+
name: Pull Request Validator
22
on:
33
pull_request:
44
paths-ignore:

.github/workflows/Release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Prerelease Drafter
1+
name: Release Build
22

33
on:
44
workflow_dispatch:
@@ -74,4 +74,4 @@ jobs:
7474
- name: Publish ALZ Module
7575
shell: pwsh
7676
run: |
77-
Publish-Module -Path "./ALZ" -NuGetApiKey ${{ secrets.POWERSHELL_GALLERY_KEY }}
77+
Publish-Module -Path "./ALZ" -NuGetApiKey ${{ secrets.POWERSHELL_GALLERY_KEY }} -ReleaseNotes "${{ steps.create_release.outputs.body }}" -Force

src/ALZ/ALZ.psd1

+4-4
Original file line numberDiff line numberDiff line change
@@ -107,19 +107,19 @@
107107
)
108108

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

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

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

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

121121
# Prerelease string of this module
122-
Prerelease = 'beta'
122+
# Prerelease = 'beta'
123123

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

0 commit comments

Comments
 (0)