Deleted custom-build workflow

- this is no longer needed because we added support to build from a
  branch
This commit is contained in:
Daniel Lockyer 2023-09-15 10:36:40 +02:00 committed by Daniel Lockyer
parent 9730229968
commit e8a0d5a300

View File

@ -1,21 +0,0 @@
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 }}