Ghost/.github/workflows/custom-build.yml
Daniel Lockyer d3a8b64f20
Added name to Custom build workflow
- this was missed from the previous commit but makes it prettier to read
2022-08-19 08:54:38 +02:00

22 lines
463 B
YAML

name: Custom build
on:
workflow_dispatch:
inputs:
branch:
description: 'Branch to build from'
type: string
required: false
default: 'main'
version:
description: 'Version to build'
type: string
required: true
env:
FORCE_COLOR: 1
jobs:
custom:
uses: tryghost/actions/.github/workflows/custom.yml@main
with:
branch: ${{ inputs.branch }}
version: ${{ inputs.version }}