Replies: 2 comments 1 reply
-
mike just uses |
Beta Was this translation helpful? Give feedback.
-
In case anyone is interested, or is in the same need, the solution that I have applied was: Previous code: mike deploy --branch doc --push "${VERSION}"
mike set-default --branch doc --push "${VERSION}" New code with the solution applied: mike deploy --branch doc "${VERSION}"
(git checkout doc && git commit --amend --no-edit) || { git checkout -; exit 1; }; git checkout -
mike set-default --branch doc "${VERSION}"
(git checkout doc && git commit --amend --no-edit) || { git checkout -; exit 1; }; git checkout -
git push --set-upstream origin doc This will make that after each change, an amend is made, for that I have to follow the steps:
|
Beta Was this translation helpful? Give feedback.
-
I have several repositories with the rule to only allow signed commits.
I see that with mike even if I configure the GPG, the commit that it generates is not signed, so it is rejected by GitHub.
Is there any possibility of implementing it? Any advice on how to approach it if I end up implementing it myself in this tool?
Beta Was this translation helpful? Give feedback.
All reactions