mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-11 19:44:52 +00:00
21 lines
653 B
YAML
21 lines
653 B
YAML
name: Build PepperDash Essentials
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- '**'
|
|
|
|
jobs:
|
|
getVersion:
|
|
uses: PepperDash/workflow-templates/.github/workflows/essentialsplugins-getversion.yml@main
|
|
secrets: inherit
|
|
build-4Series:
|
|
uses: PepperDash/workflow-templates/.github/workflows/essentialsplugins-4Series-builds.yml@main
|
|
secrets: inherit
|
|
needs: getVersion
|
|
if: needs.getVersion.outputs.newVersion == 'true'
|
|
with:
|
|
newVersion: ${{ needs.getVersion.outputs.newVersion }}
|
|
version: ${{ needs.getVersion.outputs.version }}
|
|
tag: ${{ needs.getVersion.outputs.tag }}
|
|
channel: ${{ needs.getVersion.outputs.channel }} |