From 2586e9502dd77d578b14b0ad221a8cfb765ca824 Mon Sep 17 00:00:00 2001 From: Jason DeVito Date: Tue, 26 Sep 2023 08:57:39 -0500 Subject: [PATCH 1/2] Create essentialsplugins-betabuilds-caller.yml --- .../essentialsplugins-betabuilds-caller.yml | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/essentialsplugins-betabuilds-caller.yml diff --git a/.github/workflows/essentialsplugins-betabuilds-caller.yml b/.github/workflows/essentialsplugins-betabuilds-caller.yml new file mode 100644 index 0000000..8ca618c --- /dev/null +++ b/.github/workflows/essentialsplugins-betabuilds-caller.yml @@ -0,0 +1,22 @@ +name: Beta Build + +on: + push: + branches-ignore: + - "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" + From 1b3c28da0cd81aa35e997e0ea6eb7d2dcdba31ed Mon Sep 17 00:00:00 2001 From: Jason DeVito Date: Tue, 26 Sep 2023 08:58:37 -0500 Subject: [PATCH 2/2] 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..d17c1d5 --- /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: "main" + default-branch: "main" + +