From 28e0d15b68d8aca25288428fad928757708994c7 Mon Sep 17 00:00:00 2001 From: Jason T Alborough Date: Tue, 14 Mar 2023 15:39:46 -0400 Subject: [PATCH] Create essentialsplugins-releasebuilds-caller.yml --- ...essentialsplugins-releasebuilds-caller.yml | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/essentialsplugins-releasebuilds-caller.yml diff --git a/.github/workflows/essentialsplugins-releasebuilds-caller.yml b/.github/workflows/essentialsplugins-releasebuilds-caller.yml new file mode 100644 index 0000000..3b34e10 --- /dev/null +++ b/.github/workflows/essentialsplugins-releasebuilds-caller.yml @@ -0,0 +1,26 @@ + +name: Release Build + +on: + release: + types: + - released + branches: + - "main" + + workflow_dispatch: + inputs: + branch: + description: 'Branch to build' + required: true + type: string + +jobs: + call-workflow: + uses: PepperDash/workflow-templates/.github/workflows/essentialsplugins-builds.yml@main + secrets: inherit + with: + branch: ${{ github.ref_name }} + default-branch: "main" + +