Skip to content

Commit

Permalink
feat: updates solution to 4 series
Browse files Browse the repository at this point in the history
  • Loading branch information
aknous committed Dec 3, 2024
1 parent 17dc1bf commit 36a504d
Show file tree
Hide file tree
Showing 46 changed files with 3,744 additions and 3,623 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/EssentialsPlugins-builds-caller.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Build Essentials Plugin

on:
push:
branches-ignore:
- 'robot-docs'
jobs:
checkCommitMessage:
uses: PepperDash/workflow-templates/.github/workflows/essentialsplugins-checkCommitMessage.yml@development
secrets: inherit
call-update-readme:
uses: PepperDash/readme-automation/.github/workflows/update-readme.yml@main
secrets: inherit
needs: checkCommitMessage
with:
target-branch: ${{ github.ref_name }}
getVersion:
uses: PepperDash/workflow-templates/.github/workflows/essentialsplugins-getversion.yml@development
secrets: inherit
needs: checkCommitMessage
build-4Series:
uses: PepperDash/workflow-templates/.github/workflows/essentialsplugins-4Series-builds.yml@development
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 }}
22 changes: 0 additions & 22 deletions .github/workflows/essentialsplugins-betabuilds-caller.yml

This file was deleted.

26 changes: 0 additions & 26 deletions .github/workflows/essentialsplugins-releasebuilds-caller.yml

This file was deleted.

34 changes: 34 additions & 0 deletions .releaserc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"releaseRules": [
{ "scope": "force-patch", "release": "patch" },
{ "scope": "no-release", "release": false }
]
}
],
"@semantic-release/release-notes-generator",
["@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md"
}
],
[
"@semantic-release/exec",
{
"verifyReleaseCmd": "echo \"newVersion=true\" >> $GITHUB_OUTPUT",
"publishCmd": "echo \"version=${nextRelease.version}\" >> $GITHUB_OUTPUT && echo \"tag=${nextRelease.gitTag}\" >> $GITHUB_OUTPUT && echo \"type=${nextRelease.type}\" >> $GITHUB_OUTPUT && echo \"channel=${nextRelease.channel}\" >> $GITHUB_OUTPUT"
}
]
],
"branches": [
"main",
{
"name": "replace-me-feature-branch",
"prerelease": "replace-me-prerelease",
"channel": "replace-me-prerelease"
}
]
}
File renamed without changes.
2 changes: 1 addition & 1 deletion PDT.DynFusion.EPI.sln → PDT.DynFusion.EPI.3series.sln
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

Microsoft Visual Studio Solution File, Format Version 10.00
# Visual Studio 2008
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PDTDynFusionEPI", "DynFusionEPI/PDTDynFusionEPI.csproj", "{9D249E47-8F95-4437-A6BB-563510287AD1}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PDTDynFusionEPI", "src\PDTDynFusionEPI.csproj", "{9D249E47-8F95-4437-A6BB-563510287AD1}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
25 changes: 25 additions & 0 deletions epi-crestron-fusion.4series.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.2.32630.192
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "epi-crestron-fusion.4series", "src\epi-crestron-fusion.4series.csproj", "{B28AA204-985A-4730-974C-FEBA5E7894C6}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{B28AA204-985A-4730-974C-FEBA5E7894C6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B28AA204-985A-4730-974C-FEBA5E7894C6}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B28AA204-985A-4730-974C-FEBA5E7894C6}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B28AA204-985A-4730-974C-FEBA5E7894C6}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {C239DD33-FA40-42F8-8B96-9689D52B2780}
EndGlobalSection
EndGlobal
3 changes: 3 additions & 0 deletions output/epi-crestron-fusion.4series.1.0.0-local.cplz
Git LFS file not shown
Loading

0 comments on commit 36a504d

Please sign in to comment.