Skip Deliver and Deploy when no app artifacts exist#2129
Draft
Skip Deliver and Deploy when no app artifacts exist#2129
Conversation
Co-authored-by: mazhelez <43066499+mazhelez@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Fix deliver to blob storage failure on initial commit
Fix: Skip delivery when no app artifacts exist
Feb 16, 2026
Co-authored-by: mazhelez <43066499+mazhelez@users.noreply.github.com>
Co-authored-by: mazhelez <43066499+mazhelez@users.noreply.github.com>
Copilot
AI
changed the title
Fix: Skip delivery when no app artifacts exist
Skip Deliver and Deploy when no app artifacts exist
Feb 16, 2026
…artifacts are found
…vior for delivery and deployment jobs when no app artifacts are available
…com/microsoft/AL-Go into copilot/fix-deliver-to-blob-storage
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request improves the CI/CD workflow for both AppSource App and Per Tenant Extension templates by ensuring that the Deploy and Deliver actions are only executed when app artifacts are present. This prevents errors that could occur on initial commits or when no artifacts are generated.
Workflow improvements for artifact handling:
if: hashFiles('.artifacts/**/*.app') != '') to the Deploy step inTemplates/AppSource App/.github/workflows/CICD.yamlandTemplates/Per Tenant Extension/.github/workflows/CICD.yamlto skip deployment when no.appartifacts are found. [1] [2]Documentation update:
RELEASENOTES.mdto document that Deliver and Deploy actions now skip execution when no app artifacts are found, preventing errors on initial commits.