From e8a0d5a300a39ffc9cc13f5aabf2976032c591b3 Mon Sep 17 00:00:00 2001 From: Daniel Lockyer Date: Fri, 15 Sep 2023 10:36:40 +0200 Subject: [PATCH] Deleted custom-build workflow - this is no longer needed because we added support to build from a branch --- .github/workflows/custom-build.yml | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 .github/workflows/custom-build.yml diff --git a/.github/workflows/custom-build.yml b/.github/workflows/custom-build.yml deleted file mode 100644 index bc99ebfbde..0000000000 --- a/.github/workflows/custom-build.yml +++ /dev/null @@ -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 }}