mirror of
https://github.com/PepperDash/PepperDashCore.git
synced 2026-01-11 19:44:44 +00:00
In order to conform with the plugin format and the workflow, the .csproj file was moved up a level to the root of the `src` folder and the solution file was renamed. Workflows were also changed to match the plugin workflows. BREAKING CHANGE: Supports ONLY .NET Framework 4.7.2
21 lines
649 B
YAML
21 lines
649 B
YAML
name: Build Essentials Plugin
|
|
|
|
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 }} |