Skip to content

Commit

Permalink
Correct release notes and module info (#31)
Browse files Browse the repository at this point in the history
# 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.
  • Loading branch information
Nepomuceno authored Mar 30, 2023
1 parent d2a3c54 commit 48b0965
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
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

0 comments on commit 48b0965

Please sign in to comment.