Skip to content

.github/workflows/build-manual.yml #1

.github/workflows/build-manual.yml

.github/workflows/build-manual.yml #1

Workflow file for this run

on:
workflow_dispatch:
inputs:
skippublish:
description: "Determines if the publishing to the PowerShell Gallery is skipped"
default: $True
required: false
type: choice
options:
- $False
- $True
skipghrelease:
description: "Determines if creation of a GitHub release is skipped"
default: $False
required: false
type: choice
options:
- $False
- $True
jobs:
call-tmpl-build-release:
uses: ./.github/workflows/tmpl-build-release.yml

Check failure on line 23 in .github/workflows/build-manual.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build-manual.yml

Invalid workflow file

The workflow is not valid. .github/workflows/build-manual.yml (Line: 23, Col: 11): Input module is required, but not provided while calling.
with:
skippublish: ${{ inputs.skippublish }}
skipghrelease: ${{ inputs.skipghrelease }}
secrets:
apikey: ${{ secrets.ApiKey }}