You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, this action will checkout the source repo that invokes it, and do the build and deployment.
However, if there is any on-the-fly processing that developers wish to perform in the CI pipeline before invoking this action, the modification may not propagate into this action. For example, the author wishes to generate a source file test.md on the fly and have it included in the build, he cannot do so as this action starts off by checking out the source repository which does not contain the CI generated test.md
Solution:
A simple fix is to provide an option and relevant explanation to let the author checkout his/her repository via
The author has to check out the source repo into the path curr-repo as this action was structured to separate it from the MarkBind-related dependencies. This may potentially pose some inconvenience to some authors. So a less important improvement is to make it such that the source files can remain in the root folder, by making adjustments to how this action is structured.
The text was updated successfully, but these errors were encountered:
Currently, this action will checkout the source repo that invokes it, and do the build and deployment.
However, if there is any on-the-fly processing that developers wish to perform in the CI pipeline before invoking this action, the modification may not propagate into this action. For example, the author wishes to generate a source file
test.md
on the fly and have it included in the build, he cannot do so as this action starts off by checking out the source repository which does not contain the CI generatedtest.md
Solution:
Then below it, invokes this action with:
The author has to check out the source repo into the path
curr-repo
as this action was structured to separate it from the MarkBind-related dependencies. This may potentially pose some inconvenience to some authors. So a less important improvement is to make it such that the source files can remain in the root folder, by making adjustments to how this action is structured.The text was updated successfully, but these errors were encountered: