Skip to content

Commit 9a08589

Browse files
committed
fix: update workflows
1 parent cef749f commit 9a08589

File tree

4 files changed

+36
-48
lines changed

4 files changed

+36
-48
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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+
13+
build-4Series:
14+
uses: PepperDash/workflow-templates/.github/workflows/essentialsplugins-4Series-builds.yml@main
15+
secrets: inherit
16+
needs: getVersion
17+
if: needs.getVersion.outputs.newVersion == 'true'
18+
with:
19+
newVersion: ${{ needs.getVersion.outputs.newVersion }}
20+
version: ${{ needs.getVersion.outputs.version }}
21+
tag: ${{ needs.getVersion.outputs.tag }}
22+
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+

0 commit comments

Comments
 (0)