mirror of
https://github.com/PepperDash/EssentialsPluginTemplate.git
synced 2026-01-11 19:44:38 +00:00
23 lines
417 B
YAML
23 lines
417 B
YAML
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"
|
|
|