-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
04d771c
commit 6536445
Showing
21 changed files
with
204 additions
and
155 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
{ | ||
"type": "AppSource App", | ||
"templateUrl": "https://github.com/microsoft/AL-Go-AppSource@main" | ||
"templateUrl": "https://github.com/microsoft/AL-Go-AppSource@main", | ||
"templateSha": "173f75a74ecf7d846a89b49b57fba1e3507a5ddd" | ||
} |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,10 +40,11 @@ jobs: | |
projects: ${{ steps.determineProjectsToBuild.outputs.ProjectsJson }} | ||
projectDependenciesJson: ${{ steps.determineProjectsToBuild.outputs.ProjectDependenciesJson }} | ||
buildOrderJson: ${{ steps.determineProjectsToBuild.outputs.BuildOrderJson }} | ||
powerPlatformSolutionFolder: ${{ steps.DeterminePowerPlatformSolutionFolder.outputs.powerPlatformSolutionFolder }} | ||
workflowDepth: ${{ steps.DetermineWorkflowDepth.outputs.WorkflowDepth }} | ||
steps: | ||
- name: Dump Workflow Information | ||
uses: microsoft/AL-Go-Actions/DumpWorkflowInfo@v5.1 | ||
uses: microsoft/AL-Go-Actions/DumpWorkflowInfo@v5.2 | ||
with: | ||
shell: powershell | ||
|
||
|
@@ -54,17 +55,17 @@ jobs: | |
|
||
- name: Initialize the workflow | ||
id: init | ||
uses: microsoft/AL-Go-Actions/WorkflowInitialize@v5.1 | ||
uses: microsoft/AL-Go-Actions/WorkflowInitialize@v5.2 | ||
with: | ||
shell: powershell | ||
eventId: "DO0091" | ||
|
||
- name: Read settings | ||
id: ReadSettings | ||
uses: microsoft/AL-Go-Actions/ReadSettings@v5.1 | ||
uses: microsoft/AL-Go-Actions/ReadSettings@v5.2 | ||
with: | ||
shell: powershell | ||
get: type | ||
get: type, powerPlatformSolutionFolder | ||
|
||
- name: Determine Workflow Depth | ||
id: DetermineWorkflowDepth | ||
|
@@ -73,30 +74,36 @@ jobs: | |
- name: Determine Projects To Build | ||
id: determineProjectsToBuild | ||
uses: microsoft/AL-Go-Actions/DetermineProjectsToBuild@v5.1 | ||
uses: microsoft/AL-Go-Actions/DetermineProjectsToBuild@v5.2 | ||
with: | ||
shell: powershell | ||
maxBuildDepth: ${{ env.workflowDepth }} | ||
|
||
- name: Determine PowerPlatform Solution Folder | ||
id: DeterminePowerPlatformSolutionFolder | ||
if: env.type == 'PTE' | ||
run: | | ||
Add-Content -Encoding UTF8 -Path $env:GITHUB_OUTPUT -Value "powerPlatformSolutionFolder=$($env:powerPlatformSolutionFolder)" | ||
- name: Determine Delivery Target Secrets | ||
id: DetermineDeliveryTargetSecrets | ||
uses: microsoft/AL-Go-Actions/DetermineDeliveryTargets@v5.1 | ||
uses: microsoft/AL-Go-Actions/DetermineDeliveryTargets@v5.2 | ||
with: | ||
shell: powershell | ||
projectsJson: '${{ steps.determineProjectsToBuild.outputs.ProjectsJson }}' | ||
checkContextSecrets: 'false' | ||
|
||
- name: Read secrets | ||
id: ReadSecrets | ||
uses: microsoft/AL-Go-Actions/ReadSecrets@v5.1 | ||
uses: microsoft/AL-Go-Actions/ReadSecrets@v5.2 | ||
with: | ||
shell: powershell | ||
gitHubSecrets: ${{ toJson(secrets) }} | ||
getSecrets: ${{ steps.DetermineDeliveryTargetSecrets.outputs.ContextSecrets }} | ||
|
||
- name: Determine Delivery Targets | ||
id: DetermineDeliveryTargets | ||
uses: microsoft/AL-Go-Actions/DetermineDeliveryTargets@v5.1 | ||
uses: microsoft/AL-Go-Actions/DetermineDeliveryTargets@v5.2 | ||
env: | ||
Secrets: '${{ steps.ReadSecrets.outputs.Secrets }}' | ||
with: | ||
|
@@ -106,7 +113,7 @@ jobs: | |
|
||
- name: Determine Deployment Environments | ||
id: DetermineDeploymentEnvironments | ||
uses: microsoft/AL-Go-Actions/DetermineDeploymentEnvironments@v5.1 | ||
uses: microsoft/AL-Go-Actions/DetermineDeploymentEnvironments@v5.2 | ||
env: | ||
GITHUB_TOKEN: ${{ github.token }} | ||
with: | ||
|
@@ -122,13 +129,13 @@ jobs: | |
uses: actions/checkout@v4 | ||
|
||
- name: Read settings | ||
uses: microsoft/AL-Go-Actions/ReadSettings@v5.1 | ||
uses: microsoft/AL-Go-Actions/ReadSettings@v5.2 | ||
with: | ||
shell: powershell | ||
get: templateUrl | ||
|
||
- name: Check for updates to AL-Go system files | ||
uses: microsoft/AL-Go-Actions/CheckForUpdates@v5.1 | ||
uses: microsoft/AL-Go-Actions/CheckForUpdates@v5.2 | ||
with: | ||
shell: powershell | ||
templateUrl: ${{ env.templateUrl }} | ||
|
@@ -160,7 +167,7 @@ jobs: | |
|
||
DeployALDoc: | ||
needs: [ Initialization, Build ] | ||
if: always() && needs.Build.result == 'Success' && needs.Initialization.outputs.generateALDocArtifact == 1 && github.ref_name == 'main' | ||
if: (!cancelled()) && needs.Build.result == 'Success' && needs.Initialization.outputs.generateALDocArtifact == 1 && github.ref_name == 'main' | ||
runs-on: windows-latest | ||
name: Deploy Reference Documentation | ||
permissions: | ||
|
@@ -181,7 +188,7 @@ jobs: | |
path: '.artifacts' | ||
|
||
- name: Read settings | ||
uses: microsoft/AL-Go-Actions/ReadSettings@v5.1 | ||
uses: microsoft/AL-Go-Actions/ReadSettings@v5.2 | ||
with: | ||
shell: powershell | ||
|
||
|
@@ -190,7 +197,7 @@ jobs: | |
uses: actions/configure-pages@v5 | ||
|
||
- name: Build Reference Documentation | ||
uses: microsoft/AL-Go-Actions/BuildReferenceDocumentation@v5.1 | ||
uses: microsoft/AL-Go-Actions/BuildReferenceDocumentation@v5.2 | ||
with: | ||
shell: powershell | ||
artifacts: '.artifacts' | ||
|
@@ -207,7 +214,7 @@ jobs: | |
|
||
Deploy: | ||
needs: [ Initialization, Build ] | ||
if: always() && needs.Build.result == 'Success' && needs.Initialization.outputs.environmentCount > 0 | ||
if: (!cancelled()) && (needs.Build.result == 'success' || needs.Build.result == 'skipped') && needs.Initialization.outputs.environmentCount > 0 | ||
strategy: ${{ fromJson(needs.Initialization.outputs.environmentsMatrixJson) }} | ||
runs-on: ${{ fromJson(matrix.os) }} | ||
name: Deploy to ${{ matrix.environment }} | ||
|
@@ -227,9 +234,10 @@ jobs: | |
path: '.artifacts' | ||
|
||
- name: Read settings | ||
uses: microsoft/AL-Go-Actions/ReadSettings@v5.1 | ||
uses: microsoft/AL-Go-Actions/ReadSettings@v5.2 | ||
with: | ||
shell: ${{ matrix.shell }} | ||
get: type,powerPlatformSolutionFolder | ||
|
||
- name: EnvName | ||
id: envName | ||
|
@@ -240,27 +248,38 @@ jobs: | |
- name: Read secrets | ||
id: ReadSecrets | ||
uses: microsoft/AL-Go-Actions/ReadSecrets@v5.1 | ||
uses: microsoft/AL-Go-Actions/ReadSecrets@v5.2 | ||
with: | ||
shell: ${{ matrix.shell }} | ||
gitHubSecrets: ${{ toJson(secrets) }} | ||
getSecrets: '${{ steps.envName.outputs.envName }}-AuthContext,${{ steps.envName.outputs.envName }}_AuthContext,AuthContext,${{ steps.envName.outputs.envName }}-EnvironmentName,${{ steps.envName.outputs.envName }}_EnvironmentName,EnvironmentName,projects' | ||
|
||
- name: Deploy | ||
- name: Deploy to Business Central | ||
id: Deploy | ||
uses: microsoft/AL-Go-Actions/Deploy@v5.1 | ||
uses: microsoft/AL-Go-Actions/Deploy@v5.2 | ||
env: | ||
Secrets: '${{ steps.ReadSecrets.outputs.Secrets }}' | ||
with: | ||
shell: ${{ matrix.shell }} | ||
environmentName: ${{ matrix.environment }} | ||
artifacts: '.artifacts' | ||
artifactsFolder: '.artifacts' | ||
type: 'CD' | ||
deploymentEnvironmentsJson: ${{ needs.Initialization.outputs.deploymentEnvironmentsJson }} | ||
|
||
- name: Deploy to Power Platform | ||
if: env.type == 'PTE' && env.powerPlatformSolutionFolder != '' | ||
uses: microsoft/AL-Go-Actions/[email protected] | ||
env: | ||
Secrets: '${{ steps.ReadSecrets.outputs.Secrets }}' | ||
with: | ||
shell: powershell | ||
environmentName: ${{ matrix.environment }} | ||
artifactsFolder: '.artifacts' | ||
deploymentEnvironmentsJson: ${{ needs.Initialization.outputs.deploymentEnvironmentsJson }} | ||
|
||
Deliver: | ||
needs: [ Initialization, Build ] | ||
if: always() && needs.Build.result == 'Success' && needs.Initialization.outputs.deliveryTargetsJson != '[]' | ||
if: (!cancelled()) && (needs.Build.result == 'success' || needs.Build.result == 'skipped') && needs.Initialization.outputs.deliveryTargetsJson != '[]' | ||
strategy: | ||
matrix: | ||
deliveryTarget: ${{ fromJson(needs.Initialization.outputs.deliveryTargetsJson) }} | ||
|
@@ -277,20 +296,20 @@ jobs: | |
path: '.artifacts' | ||
|
||
- name: Read settings | ||
uses: microsoft/AL-Go-Actions/ReadSettings@v5.1 | ||
uses: microsoft/AL-Go-Actions/ReadSettings@v5.2 | ||
with: | ||
shell: powershell | ||
|
||
- name: Read secrets | ||
id: ReadSecrets | ||
uses: microsoft/AL-Go-Actions/ReadSecrets@v5.1 | ||
uses: microsoft/AL-Go-Actions/ReadSecrets@v5.2 | ||
with: | ||
shell: powershell | ||
gitHubSecrets: ${{ toJson(secrets) }} | ||
getSecrets: '${{ matrix.deliveryTarget }}Context' | ||
|
||
- name: Deliver | ||
uses: microsoft/AL-Go-Actions/Deliver@v5.1 | ||
uses: microsoft/AL-Go-Actions/Deliver@v5.2 | ||
env: | ||
Secrets: '${{ steps.ReadSecrets.outputs.Secrets }}' | ||
with: | ||
|
@@ -310,7 +329,7 @@ jobs: | |
|
||
- name: Finalize the workflow | ||
id: PostProcess | ||
uses: microsoft/AL-Go-Actions/WorkflowPostProcess@v5.1 | ||
uses: microsoft/AL-Go-Actions/WorkflowPostProcess@v5.2 | ||
with: | ||
shell: powershell | ||
eventId: "DO0091" | ||
|
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
Oops, something went wrong.