Skip to content
1 change: 1 addition & 0 deletions RELEASENOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ Workspace compilation now finds altool both in the platform-specific subfolder (
- Issue 2302 - AlDoc does not use --packagecache when building reference documentation
- 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

## v9.1

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