Skip to content
Open
1 change: 1 addition & 0 deletions RELEASENOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ As part of this, the warning comparison now also parses the raw AL compiler outp
- Reference documentation no longer fails with "InvalidTocInclude: Referenced TOC file ... does not exist" for apps whose name contains an underscore (e.g. `_Exclude_*` apps). The toc.yml folder names are now derived using the same rules as the aldoc tool, which keeps underscores instead of turning them into hyphens.
- Issue 2319 - Under workspace compilation, `enableCodeAnalyzersOnTestApps: false` now also disables custom analyzers (`customCodeCops`) for test apps and BCPT test apps, not just the built-in code analyzers.
- Issue 2267 - `AppSourceCop.json` is now created for test apps when `enableCodeAnalyzersOnTestApps` is true.
- Issue 2320 - Deliver to NuGet of release workflow failing with app and test app

### Valid SARIF URIs for file paths containing spaces

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ jobs:

- name: Deliver to NuGet
uses: microsoft/AL-Go-Actions/Deliver@main
if: ${{ fromJson(steps.ReadSecrets.outputs.Secrets).nuGetContext != '' }}
if: ${{ matrix.atype == 'Apps' && fromJson(steps.ReadSecrets.outputs.Secrets).nuGetContext != '' }}
env:
Secrets: '${{ steps.ReadSecrets.outputs.Secrets }}'
with:
Expand All @@ -254,7 +254,7 @@ jobs:

- name: Deliver to Storage
uses: microsoft/AL-Go-Actions/Deliver@main
if: ${{ fromJson(steps.ReadSecrets.outputs.Secrets).storageContext != '' }}
if: ${{ matrix.atype == 'Apps' && fromJson(steps.ReadSecrets.outputs.Secrets).storageContext != '' }}
env:
Secrets: '${{ steps.ReadSecrets.outputs.Secrets }}'
with:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ jobs:

- name: Deliver to NuGet
uses: microsoft/AL-Go-Actions/Deliver@main
if: ${{ fromJson(steps.ReadSecrets.outputs.Secrets).nuGetContext != '' }}
if: ${{ matrix.atype == 'Apps' && fromJson(steps.ReadSecrets.outputs.Secrets).nuGetContext != '' }}
env:
Secrets: '${{ steps.ReadSecrets.outputs.Secrets }}'
with:
Expand All @@ -254,7 +254,7 @@ jobs:

- name: Deliver to Storage
uses: microsoft/AL-Go-Actions/Deliver@main
if: ${{ fromJson(steps.ReadSecrets.outputs.Secrets).storageContext != '' }}
if: ${{ matrix.atype == 'Apps' && fromJson(steps.ReadSecrets.outputs.Secrets).storageContext != '' }}
env:
Secrets: '${{ steps.ReadSecrets.outputs.Secrets }}'
with:
Expand Down
Loading