fix: quiet module load log (Verbose instead of Information) (#470) #47
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Publish Module | ||
| on: | ||
| push: | ||
| branches: | ||
| - main | ||
| workflow_dispatch: | ||
| inputs: | ||
| version: | ||
| description: "The version to publish. Leave empty to use the version in the module manifest." | ||
| required: false | ||
| type: string | ||
| isPrerelease: | ||
| description: "Is this a prerelease version?" | ||
| required: false | ||
| type: boolean | ||
| default: false | ||
| dry_run: | ||
| description: "If true, skip actual publishing and just validate the workflow logic." | ||
| required: false | ||
| type: boolean | ||
| default: false | ||
| permissions: | ||
| contents: write | ||
| jobs: | ||
| publish: | ||
| name: Publish Module | ||
| uses: PowerShellOrg/.github/.github/workflows/powershell-release.yml@main | ||
| with: | ||
| version: ${{ inputs.version || '' }} | ||
| isPrerelease: ${{ inputs.isPrerelease || false }} | ||
|
Check failure on line 30 in .github/workflows/publish.yaml
|
||
| dry_run: ${{ inputs.dry_run || false }} | ||
| secrets: inherit | ||