ci: add nfpm and apk steps to alauda release workflow#4
Merged
Conversation
The checksum step calls DistBinaries() which expects deb/, rpm/, apk/ directories to exist. Without nfpm-build and apk steps these directories are missing, causing `ls deb: No such file or directory` failure. Add the missing build steps to match the upstream default.yaml pipeline. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
🤖 AI Code Review
SummaryThis PR adds two missing workflow steps (NFPM Build and APK Build) to the release workflow that are required for the Checksum step to succeed. The changes are straightforward and correctly positioned before the Create Checksum step. Overall the PR is well-structured and follows existing patterns in the workflow. Review Statistics
Critical Issues
None. Warnings
None. Suggestions
Positive Feedback
ℹ️ About this reviewThis review was automatically generated using the
|
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.
Summary
Fix alauda release workflow failure caused by missing
deb/,rpm/,apk/directories.Checksumstep callsDistBinaries()which runslsonarchive/,deb/,rpm/,apk/dirsnfpm-buildandapksteps, those directories don't exist →ls deb: No such file or directorydefault.yamlpipelineFailed run: https://github.com/AlaudaDevops/harbor-cli/actions/runs/24543124484
Test plan
🤖 Generated with Claude Code