Skip to content

fix: quiet module load log (Verbose instead of Information) (#470) #47

fix: quiet module load log (Verbose instead of Information) (#470)

fix: quiet module load log (Verbose instead of Information) (#470) #47

Workflow file for this run

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

View workflow run for this annotation

GitHub Actions / Publish Module

Invalid workflow file

The workflow is not valid. .github/workflows/publish.yaml (Line: 30, Col: 21): Invalid input, isPrerelease is not defined in the referenced workflow.
dry_run: ${{ inputs.dry_run || false }}
secrets: inherit