Skip to content

Commit 59cea38

Browse files
authored
Merge pull request #7 from PepperDash/4-series-updates
4 series updates
2 parents 69ff533 + a5269f3 commit 59cea38

36 files changed

+480
-125
lines changed
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Build Essentials Plugin
2+
3+
on:
4+
push:
5+
branches:
6+
- '**'
7+
8+
jobs:
9+
getVersion:
10+
uses: PepperDash/workflow-templates/.github/workflows/essentialsplugins-getversion.yml@main
11+
secrets: inherit
12+
build-3Series:
13+
uses: PepperDash/workflow-templates/.github/workflows/essentialsplugins-3Series-builds.yml@main
14+
secrets: inherit
15+
needs: getVersion
16+
if: needs.getVersion.outputs.newVersion == 'true'
17+
with:
18+
newVersion: ${{ needs.getVersion.outputs.newVersion }}
19+
version: ${{ needs.getVersion.outputs.version }}
20+
tag: ${{ needs.getVersion.outputs.tag }}
21+
channel: ${{ needs.getVersion.outputs.channel }}
22+
build-4Series:
23+
uses: PepperDash/workflow-templates/.github/workflows/essentialsplugins-4Series-builds.yml@main
24+
secrets: inherit
25+
needs: getVersion
26+
if: needs.getVersion.outputs.newVersion == 'true'
27+
with:
28+
newVersion: ${{ needs.getVersion.outputs.newVersion }}
29+
version: ${{ needs.getVersion.outputs.version }}
30+
tag: ${{ needs.getVersion.outputs.tag }}
31+
channel: ${{ needs.getVersion.outputs.channel }}

.github/workflows/essentialsplugins-betabuilds-caller.yml

Lines changed: 0 additions & 22 deletions
This file was deleted.

.github/workflows/essentialsplugins-releasebuilds-caller.yml

Lines changed: 0 additions & 26 deletions
This file was deleted.
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
2+
name: Generate README
3+
4+
on:
5+
push:
6+
branches-ignore:
7+
- 'robot-docs'
8+
9+
jobs:
10+
call-update-readme:
11+
uses: PepperDash/workflow-templates/.github/workflows/update-readme.yml@development
12+
with:
13+
target-branch: ${{ github.ref_name }}
14+
File renamed without changes.

0 commit comments

Comments
 (0)