Fix workflow date output variable name mismatch#73
Merged
Conversation
- Change output name from 'today' to 'date' in create-manifests job - Update all references to use steps.date.outputs.date consistently - Fixes manifest creation failure for date-tagged images The build jobs create tags like '20251031-amd64' using outputs.date, but the manifest job was looking for outputs.today, causing a mismatch.
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.
問題
PR #72のマージ後、CIビルドが失敗しました:
原因
ビルドジョブとマニフェスト作成ジョブでdate出力の変数名が不一致でした:
steps.date.outputs.dateを使用して20251031-amd64のようなタグを作成steps.date.outputs.todayを参照(存在しない)修正内容
create-manifestsジョブの以下を修正:Line 441: 出力変数名を
todayからdateに変更Line 502-504: 参照を
outputs.todayからoutputs.dateに変更-t ${IMAGE}:${{ steps.date.outputs.date }}影響範囲
20251031)のマニフェスト作成が正常に動作するようになりますlatest,lite-latest,full-latest等)には影響しませんテスト
このPRをマージすると、mainブランチへのpushで再度CIが実行され、すべてのマニフェストが正常に作成されるはずです。