-
Notifications
You must be signed in to change notification settings - Fork 1
Expose artifact name from build-image job #84
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -45,6 +45,7 @@ class ContextUpdater(ContextHook): | |||||||||||||||||||||||||||||
| context["vue_version"] = "{{ vue_version }}" | ||||||||||||||||||||||||||||||
| context["vue_router_version"] = "{{ vue_router_version }}" | ||||||||||||||||||||||||||||||
| context["faker_version"] = "{{ faker_version }}" | ||||||||||||||||||||||||||||||
| context["vitest_version"] = "{{ vitest_version }}" | ||||||||||||||||||||||||||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 💡 Verification agent 🧩 Analysis chainVerify vitest_version is defined in copier.yaml and test fixtures To avoid Jinja UndefinedError during template rendering, ensure vitest_version is present wherever other version vars are defined (e.g., copier.yaml and tests/data*.yml). Run this to confirm coverage: If missing, I can add a default in copier.yaml matching extensions/context.py ("^3.2.4"). 🏁 Script executed: #!/bin/bash
set -euo pipefail
echo "Search for vitest_version definitions in config and tests"
# copier config(s)
fd -a -t f 'copier.y*ml' | xargs -r -I{} rg -n --no-heading '^\s*vitest_version\s*:' {} || true
# test fixtures
rg -n --no-heading 'vitest_version' tests || true
# ensure used in templates (expect hits)
rg -n --no-heading 'vitest_version' template || trueLength of output: 443 Define The template at Please add a default • In variables:
# …existing definitions…
+ vitest_version:
+ type: str
+ default: "^3.2.4"
+ help: "Version of Vitest to install in the generated project"• In your test fixtures (e.g. # …existing test data…
+vitest_version: "^3.2.4"These additions will ensure that 📝 Committable suggestion
Suggested change
Suggested change
🤖 Prompt for AI Agents |
||||||||||||||||||||||||||||||
| context["eslint_version"] = "{{ eslint_version }}" | ||||||||||||||||||||||||||||||
| context["zod_version"] = "{{ zod_version }}" | ||||||||||||||||||||||||||||||
| context["nuxt_apollo_version"] = "{{ nuxt_apollo_version }}" | ||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The output references
steps.calculate-build-context-hash.outputs.image_name_no_slashesbut there's no visible step with idcalculate-build-context-hashin the diff. Verify this step exists and produces the expected output.