Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/AL-Go-Settings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://raw.githubusercontent.com/microsoft/AL-Go/59f772f3fb277cd5041c07311ceb5eb0297fdf1d/Actions/.Modules/settings.schema.json",
"$schema": "https://raw.githubusercontent.com/microsoft/AL-Go/2c60bf2b8a164b0c0a956088ea850b7d1d0e27cf/Actions/.Modules/settings.schema.json",
"type": "PTE",
"templateUrl": "https://github.com/microsoft/AL-Go-PTE@preview",
"bcContainerHelperVersion": "preview",
Expand Down Expand Up @@ -94,7 +94,7 @@
]
},
"UpdateALGoSystemFilesEnvironment": "Official-Build",
"templateSha": "5779109fb55b523ca83927998f3ba828003302b2",
"templateSha": "fd25f3deabd66383413e0d217437f30e5eb45ea8",
"commitOptions": {
"messageSuffix": "Related to AB#539394",
"pullRequestAutoMerge": true,
Expand Down
18 changes: 18 additions & 0 deletions .github/RELEASENOTES.copy.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,23 @@

Note that when using the preview version of AL-Go for GitHub, we recommend you Update your AL-Go system files, as soon as possible when informed that an update is available.

### Conditional settings now support workflow trigger events

`ConditionalSettings` now supports a `triggers` condition, allowing you to apply settings based on `GITHUB_EVENT_NAME` values such as `push`, `pull_request`, `schedule`, and `workflow_dispatch`.

Example:

```json
"ConditionalSettings": [
{
"triggers": ["schedule", "workflow_dispatch"],
"settings": {
"additionalCountries": ["de", "us"]
}
}
]
```

### Optimized dependency artifact downloads for multi-project repositories

The `DownloadProjectDependencies` action now downloads only artifacts from dependency projects instead of all workflow artifacts. For repositories with many AL-Go projects, this reduces build runner bandwidth and speeds up the dependency download step.
Expand All @@ -12,6 +29,7 @@ The `DownloadProjectDependencies` action now downloads only artifacts from depen
- Issue 2204 - Workspace compilation ignores vsixFile setting
- Issue 2211 - Cannot create a release if a project contains only test apps
- Issue 2214 - Workspace compilation not working with external dependencies
- Issue 2235 - Workspace compilation: only the first `customCodeCops` entry resolved when multiple relative paths were configured. Relative `customCodeCops` paths are now resolved against the project folder before being passed to the compiler.

## v9.0

Expand Down
2 changes: 1 addition & 1 deletion .github/Test Next Major.settings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://raw.githubusercontent.com/microsoft/AL-Go/59f772f3fb277cd5041c07311ceb5eb0297fdf1d/Actions/.Modules/settings.schema.json",
"$schema": "https://raw.githubusercontent.com/microsoft/AL-Go/2c60bf2b8a164b0c0a956088ea850b7d1d0e27cf/Actions/.Modules/settings.schema.json",
"artifact": "////nextmajor",
"cacheImageName": "",
"versioningStrategy": 15
Expand Down
2 changes: 1 addition & 1 deletion .github/Test Next Minor.settings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://raw.githubusercontent.com/microsoft/AL-Go/59f772f3fb277cd5041c07311ceb5eb0297fdf1d/Actions/.Modules/settings.schema.json",
"$schema": "https://raw.githubusercontent.com/microsoft/AL-Go/2c60bf2b8a164b0c0a956088ea850b7d1d0e27cf/Actions/.Modules/settings.schema.json",
"artifact": "////nextminor",
"cacheImageName": "",
"versioningStrategy": 15
Expand Down
48 changes: 24 additions & 24 deletions .github/workflows/CICD.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
trackALAlertsInGitHub: ${{ steps.SetALCodeAnalysisVar.outputs.trackALAlertsInGitHub }}
steps:
- name: Dump Workflow Information
uses: microsoft/AL-Go/Actions/DumpWorkflowInfo@59f772f3fb277cd5041c07311ceb5eb0297fdf1d
uses: microsoft/AL-Go/Actions/DumpWorkflowInfo@2c60bf2b8a164b0c0a956088ea850b7d1d0e27cf
with:
shell: powershell

Expand All @@ -62,13 +62,13 @@ jobs:

- name: Initialize the workflow
id: init
uses: microsoft/AL-Go/Actions/WorkflowInitialize@59f772f3fb277cd5041c07311ceb5eb0297fdf1d
uses: microsoft/AL-Go/Actions/WorkflowInitialize@2c60bf2b8a164b0c0a956088ea850b7d1d0e27cf
with:
shell: powershell

- name: Read settings
id: ReadSettings
uses: microsoft/AL-Go/Actions/ReadSettings@59f772f3fb277cd5041c07311ceb5eb0297fdf1d
uses: microsoft/AL-Go/Actions/ReadSettings@2c60bf2b8a164b0c0a956088ea850b7d1d0e27cf
with:
shell: powershell
get: type,powerPlatformSolutionFolder,useGitSubmodules,trackALAlertsInGitHub
Expand All @@ -82,7 +82,7 @@ jobs:
- name: Read submodules token
id: ReadSubmodulesToken
if: env.useGitSubmodules != 'false' && env.useGitSubmodules != ''
uses: microsoft/AL-Go/Actions/ReadSecrets@59f772f3fb277cd5041c07311ceb5eb0297fdf1d
uses: microsoft/AL-Go/Actions/ReadSecrets@2c60bf2b8a164b0c0a956088ea850b7d1d0e27cf
with:
shell: powershell
gitHubSecrets: ${{ toJson(secrets) }}
Expand All @@ -103,7 +103,7 @@ jobs:

- name: Determine Projects To Build
id: determineProjectsToBuild
uses: microsoft/AL-Go/Actions/DetermineProjectsToBuild@59f772f3fb277cd5041c07311ceb5eb0297fdf1d
uses: microsoft/AL-Go/Actions/DetermineProjectsToBuild@2c60bf2b8a164b0c0a956088ea850b7d1d0e27cf
with:
shell: powershell
maxBuildDepth: ${{ env.workflowDepth }}
Expand All @@ -116,23 +116,23 @@ jobs:

- name: Determine Delivery Target Secrets
id: DetermineDeliveryTargetSecrets
uses: microsoft/AL-Go/Actions/DetermineDeliveryTargets@59f772f3fb277cd5041c07311ceb5eb0297fdf1d
uses: microsoft/AL-Go/Actions/DetermineDeliveryTargets@2c60bf2b8a164b0c0a956088ea850b7d1d0e27cf
with:
shell: powershell
projectsJson: '${{ steps.determineProjectsToBuild.outputs.ProjectsJson }}'
checkContextSecrets: 'false'

- name: Read secrets
id: ReadSecrets
uses: microsoft/AL-Go/Actions/ReadSecrets@59f772f3fb277cd5041c07311ceb5eb0297fdf1d
uses: microsoft/AL-Go/Actions/ReadSecrets@2c60bf2b8a164b0c0a956088ea850b7d1d0e27cf
with:
shell: powershell
gitHubSecrets: ${{ toJson(secrets) }}
getSecrets: ${{ steps.DetermineDeliveryTargetSecrets.outputs.ContextSecrets }}

- name: Determine Delivery Targets
id: DetermineDeliveryTargets
uses: microsoft/AL-Go/Actions/DetermineDeliveryTargets@59f772f3fb277cd5041c07311ceb5eb0297fdf1d
uses: microsoft/AL-Go/Actions/DetermineDeliveryTargets@2c60bf2b8a164b0c0a956088ea850b7d1d0e27cf
env:
Secrets: '${{ steps.ReadSecrets.outputs.Secrets }}'
with:
Expand All @@ -142,7 +142,7 @@ jobs:

- name: Determine Deployment Environments
id: DetermineDeploymentEnvironments
uses: microsoft/AL-Go/Actions/DetermineDeploymentEnvironments@59f772f3fb277cd5041c07311ceb5eb0297fdf1d
uses: microsoft/AL-Go/Actions/DetermineDeploymentEnvironments@2c60bf2b8a164b0c0a956088ea850b7d1d0e27cf
env:
GITHUB_TOKEN: ${{ github.token }}
with:
Expand All @@ -158,21 +158,21 @@ jobs:
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

- name: Read settings
uses: microsoft/AL-Go/Actions/ReadSettings@59f772f3fb277cd5041c07311ceb5eb0297fdf1d
uses: microsoft/AL-Go/Actions/ReadSettings@2c60bf2b8a164b0c0a956088ea850b7d1d0e27cf
with:
shell: powershell
get: templateUrl

- name: Read secrets
id: ReadSecrets
uses: microsoft/AL-Go/Actions/ReadSecrets@59f772f3fb277cd5041c07311ceb5eb0297fdf1d
uses: microsoft/AL-Go/Actions/ReadSecrets@2c60bf2b8a164b0c0a956088ea850b7d1d0e27cf
with:
shell: powershell
gitHubSecrets: ${{ toJson(secrets) }}
getSecrets: 'ghTokenWorkflow'

- name: Check for updates to AL-Go system files
uses: microsoft/AL-Go/Actions/CheckForUpdates@59f772f3fb277cd5041c07311ceb5eb0297fdf1d
uses: microsoft/AL-Go/Actions/CheckForUpdates@2c60bf2b8a164b0c0a956088ea850b7d1d0e27cf
env:
GITHUB_TOKEN: ${{ github.token }}
with:
Expand Down Expand Up @@ -251,7 +251,7 @@ jobs:
- name: Process AL Code Analysis Logs
id: ProcessALCodeAnalysisLogs
if: (success() || failure())
uses: microsoft/AL-Go/Actions/ProcessALCodeAnalysisLogs@59f772f3fb277cd5041c07311ceb5eb0297fdf1d
uses: microsoft/AL-Go/Actions/ProcessALCodeAnalysisLogs@2c60bf2b8a164b0c0a956088ea850b7d1d0e27cf
with:
shell: powershell

Expand Down Expand Up @@ -285,13 +285,13 @@ jobs:
path: '.artifacts'

- name: Read settings
uses: microsoft/AL-Go/Actions/ReadSettings@59f772f3fb277cd5041c07311ceb5eb0297fdf1d
uses: microsoft/AL-Go/Actions/ReadSettings@2c60bf2b8a164b0c0a956088ea850b7d1d0e27cf
with:
shell: powershell

- name: Determine ArtifactUrl
id: determineArtifactUrl
uses: microsoft/AL-Go/Actions/DetermineArtifactUrl@59f772f3fb277cd5041c07311ceb5eb0297fdf1d
uses: microsoft/AL-Go/Actions/DetermineArtifactUrl@2c60bf2b8a164b0c0a956088ea850b7d1d0e27cf
with:
shell: powershell

Expand All @@ -300,7 +300,7 @@ jobs:
uses: actions/configure-pages@45bfe0192ca1faeb007ade9deae92b16b8254a0d # v6.0.0

- name: Build Reference Documentation
uses: microsoft/AL-Go/Actions/BuildReferenceDocumentation@59f772f3fb277cd5041c07311ceb5eb0297fdf1d
uses: microsoft/AL-Go/Actions/BuildReferenceDocumentation@2c60bf2b8a164b0c0a956088ea850b7d1d0e27cf
with:
shell: powershell
artifacts: '.artifacts'
Expand Down Expand Up @@ -341,7 +341,7 @@ jobs:
path: '.artifacts'

- name: Read settings
uses: microsoft/AL-Go/Actions/ReadSettings@59f772f3fb277cd5041c07311ceb5eb0297fdf1d
uses: microsoft/AL-Go/Actions/ReadSettings@2c60bf2b8a164b0c0a956088ea850b7d1d0e27cf
with:
shell: ${{ matrix.shell }}
get: type,powerPlatformSolutionFolder
Expand All @@ -355,15 +355,15 @@ jobs:

- name: Read secrets
id: ReadSecrets
uses: microsoft/AL-Go/Actions/ReadSecrets@59f772f3fb277cd5041c07311ceb5eb0297fdf1d
uses: microsoft/AL-Go/Actions/ReadSecrets@2c60bf2b8a164b0c0a956088ea850b7d1d0e27cf
with:
shell: ${{ matrix.shell }}
gitHubSecrets: ${{ toJson(secrets) }}
getSecrets: '${{ steps.envName.outputs.envName }}-AuthContext,${{ steps.envName.outputs.envName }}_AuthContext,AuthContext'

- name: Deploy to Business Central
id: Deploy
uses: microsoft/AL-Go/Actions/Deploy@59f772f3fb277cd5041c07311ceb5eb0297fdf1d
uses: microsoft/AL-Go/Actions/Deploy@2c60bf2b8a164b0c0a956088ea850b7d1d0e27cf
env:
Secrets: '${{ steps.ReadSecrets.outputs.Secrets }}'
with:
Expand All @@ -375,7 +375,7 @@ jobs:

- name: Deploy to Power Platform
if: env.type == 'PTE' && env.powerPlatformSolutionFolder != ''
uses: microsoft/AL-Go/Actions/DeployPowerPlatform@59f772f3fb277cd5041c07311ceb5eb0297fdf1d
uses: microsoft/AL-Go/Actions/DeployPowerPlatform@2c60bf2b8a164b0c0a956088ea850b7d1d0e27cf
env:
Secrets: '${{ steps.ReadSecrets.outputs.Secrets }}'
with:
Expand Down Expand Up @@ -403,20 +403,20 @@ jobs:
path: '.artifacts'

- name: Read settings
uses: microsoft/AL-Go/Actions/ReadSettings@59f772f3fb277cd5041c07311ceb5eb0297fdf1d
uses: microsoft/AL-Go/Actions/ReadSettings@2c60bf2b8a164b0c0a956088ea850b7d1d0e27cf
with:
shell: powershell

- name: Read secrets
id: ReadSecrets
uses: microsoft/AL-Go/Actions/ReadSecrets@59f772f3fb277cd5041c07311ceb5eb0297fdf1d
uses: microsoft/AL-Go/Actions/ReadSecrets@2c60bf2b8a164b0c0a956088ea850b7d1d0e27cf
with:
shell: powershell
gitHubSecrets: ${{ toJson(secrets) }}
getSecrets: '${{ matrix.deliveryTarget }}Context'

- name: Deliver
uses: microsoft/AL-Go/Actions/Deliver@59f772f3fb277cd5041c07311ceb5eb0297fdf1d
uses: microsoft/AL-Go/Actions/Deliver@2c60bf2b8a164b0c0a956088ea850b7d1d0e27cf
env:
Secrets: '${{ steps.ReadSecrets.outputs.Secrets }}'
with:
Expand All @@ -436,7 +436,7 @@ jobs:

- name: Finalize the workflow
id: PostProcess
uses: microsoft/AL-Go/Actions/WorkflowPostProcess@59f772f3fb277cd5041c07311ceb5eb0297fdf1d
uses: microsoft/AL-Go/Actions/WorkflowPostProcess@2c60bf2b8a164b0c0a956088ea850b7d1d0e27cf
env:
GITHUB_TOKEN: ${{ github.token }}
with:
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/DeployReferenceDocumentation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,24 +30,24 @@ jobs:

- name: Initialize the workflow
id: init
uses: microsoft/AL-Go/Actions/WorkflowInitialize@59f772f3fb277cd5041c07311ceb5eb0297fdf1d
uses: microsoft/AL-Go/Actions/WorkflowInitialize@2c60bf2b8a164b0c0a956088ea850b7d1d0e27cf
with:
shell: powershell

- name: Read settings
uses: microsoft/AL-Go/Actions/ReadSettings@59f772f3fb277cd5041c07311ceb5eb0297fdf1d
uses: microsoft/AL-Go/Actions/ReadSettings@2c60bf2b8a164b0c0a956088ea850b7d1d0e27cf
with:
shell: powershell

- name: Determine ArtifactUrl
id: determineArtifactUrl
uses: microsoft/AL-Go/Actions/DetermineArtifactUrl@59f772f3fb277cd5041c07311ceb5eb0297fdf1d
uses: microsoft/AL-Go/Actions/DetermineArtifactUrl@2c60bf2b8a164b0c0a956088ea850b7d1d0e27cf
with:
shell: powershell

- name: Determine Deployment Environments
id: DetermineDeploymentEnvironments
uses: microsoft/AL-Go/Actions/DetermineDeploymentEnvironments@59f772f3fb277cd5041c07311ceb5eb0297fdf1d
uses: microsoft/AL-Go/Actions/DetermineDeploymentEnvironments@2c60bf2b8a164b0c0a956088ea850b7d1d0e27cf
env:
GITHUB_TOKEN: ${{ github.token }}
with:
Expand All @@ -60,7 +60,7 @@ jobs:
uses: actions/configure-pages@45bfe0192ca1faeb007ade9deae92b16b8254a0d # v6.0.0

- name: Build Reference Documentation
uses: microsoft/AL-Go/Actions/BuildReferenceDocumentation@59f772f3fb277cd5041c07311ceb5eb0297fdf1d
uses: microsoft/AL-Go/Actions/BuildReferenceDocumentation@2c60bf2b8a164b0c0a956088ea850b7d1d0e27cf
with:
shell: powershell
artifacts: 'latest'
Expand All @@ -78,7 +78,7 @@ jobs:

- name: Finalize the workflow
if: always()
uses: microsoft/AL-Go/Actions/WorkflowPostProcess@59f772f3fb277cd5041c07311ceb5eb0297fdf1d
uses: microsoft/AL-Go/Actions/WorkflowPostProcess@2c60bf2b8a164b0c0a956088ea850b7d1d0e27cf
env:
GITHUB_TOKEN: ${{ github.token }}
with:
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/IncrementVersionNumber.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
pull-requests: write
steps:
- name: Dump Workflow Information
uses: microsoft/AL-Go/Actions/DumpWorkflowInfo@59f772f3fb277cd5041c07311ceb5eb0297fdf1d
uses: microsoft/AL-Go/Actions/DumpWorkflowInfo@2c60bf2b8a164b0c0a956088ea850b7d1d0e27cf
with:
shell: powershell

Expand All @@ -57,32 +57,32 @@ jobs:

- name: Initialize the workflow
id: init
uses: microsoft/AL-Go/Actions/WorkflowInitialize@59f772f3fb277cd5041c07311ceb5eb0297fdf1d
uses: microsoft/AL-Go/Actions/WorkflowInitialize@2c60bf2b8a164b0c0a956088ea850b7d1d0e27cf
with:
shell: powershell

- name: Read settings
uses: microsoft/AL-Go/Actions/ReadSettings@59f772f3fb277cd5041c07311ceb5eb0297fdf1d
uses: microsoft/AL-Go/Actions/ReadSettings@2c60bf2b8a164b0c0a956088ea850b7d1d0e27cf
with:
shell: powershell

- name: Validate Workflow Input
if: ${{ github.event_name == 'workflow_dispatch' }}
uses: microsoft/AL-Go/Actions/ValidateWorkflowInput@59f772f3fb277cd5041c07311ceb5eb0297fdf1d
uses: microsoft/AL-Go/Actions/ValidateWorkflowInput@2c60bf2b8a164b0c0a956088ea850b7d1d0e27cf
with:
shell: powershell

- name: Read secrets
id: ReadSecrets
uses: microsoft/AL-Go/Actions/ReadSecrets@59f772f3fb277cd5041c07311ceb5eb0297fdf1d
uses: microsoft/AL-Go/Actions/ReadSecrets@2c60bf2b8a164b0c0a956088ea850b7d1d0e27cf
with:
shell: powershell
gitHubSecrets: ${{ toJson(secrets) }}
getSecrets: 'TokenForPush'
useGhTokenWorkflowForPush: '${{ github.event.inputs.useGhTokenWorkflow }}'

- name: Increment Version Number
uses: microsoft/AL-Go/Actions/IncrementVersionNumber@59f772f3fb277cd5041c07311ceb5eb0297fdf1d
uses: microsoft/AL-Go/Actions/IncrementVersionNumber@2c60bf2b8a164b0c0a956088ea850b7d1d0e27cf
with:
shell: powershell
token: ${{ steps.ReadSecrets.outputs.TokenForPush }}
Expand All @@ -93,7 +93,7 @@ jobs:

- name: Finalize the workflow
if: always()
uses: microsoft/AL-Go/Actions/WorkflowPostProcess@59f772f3fb277cd5041c07311ceb5eb0297fdf1d
uses: microsoft/AL-Go/Actions/WorkflowPostProcess@2c60bf2b8a164b0c0a956088ea850b7d1d0e27cf
env:
GITHUB_TOKEN: ${{ github.token }}
with:
Expand Down
Loading
Loading