aube deploy doesn't preserve patches
#1212
Unanswered
hilja
asked this question in
Troubleshooting and Bugs
Replies: 1 comment
|
Confirmed — this was a deploy bug, and #1213 fixes it.
The fix resolves the source workspace patches before staging, copies them into each deploy target, and records equivalent patch metadata in the deployed manifest. I verified it against the linked reproduction: AI-assisted — Tool: Codex; model: openai/gpt-5; version: unavailable. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Repro: https://github.com/hilja/aube-update-repro/tree/main/deploy
Correct me if I'm wrong, but if I run
aube -F=foo deploy --prod deployed-fooin the above repro, the patch should be applied indeployed-foo/node_modules/is-even/index.js. But doesn't seem to be.I was pulling my hair our earlier and realized I had to apply the patch manually in my docker, and then everything worked:
RUN git -C /app/node_modules/lighthouse apply /usr/src/app/patches/lighthouse@13.3.0.patchAll reactions