fix: set PowerOff method to not do anything if power is off already #10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Essentials Plugin | |
on: | |
push: | |
branches: | |
- '**' | |
jobs: | |
getVersion: | |
uses: PepperDash/workflow-templates/.github/workflows/essentialsplugins-getversion.yml@main | |
secrets: inherit | |
build-3Series: | |
uses: PepperDash/workflow-templates/.github/workflows/essentialsplugins-3Series-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 }} | |
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 }} |