diff --git a/.github/workflows/custom-build.yml b/.github/workflows/custom-build.yml new file mode 100644 index 0000000000..1524753fe4 --- /dev/null +++ b/.github/workflows/custom-build.yml @@ -0,0 +1,20 @@ +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 }}