2022-08-19 09:54:38 +03:00
|
|
|
name: Custom build
|
2022-08-19 09:52:33 +03:00
|
|
|
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 }}
|