Skip to content

Commit e316750

Browse files
authoredSep 13, 2023··
Merge pull request #4 from PepperDash/adds-releasebuilds-caller
Create essentialsplugins-releasebuilds-caller.yml
2 parents c9a3f3d + 7f5ab43 commit e316750

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
2+
name: Release Build
3+
4+
on:
5+
release:
6+
types:
7+
- released
8+
branches:
9+
- "master"
10+
11+
workflow_dispatch:
12+
inputs:
13+
branch:
14+
description: 'Branch to build'
15+
required: true
16+
type: string
17+
18+
jobs:
19+
call-workflow:
20+
uses: PepperDash/workflow-templates/.github/workflows/essentialsplugins-builds.yml@main
21+
secrets: inherit
22+
with:
23+
branch: "master"
24+
default-branch: "master"
25+
26+

0 commit comments

Comments
 (0)
Please sign in to comment.