(English follows Japanese.)
Orchestratorと、ソースコード管理を、使用している環境で、ソースコード管理側に、Publishの記録を、連携させる、良い方法はないでしょうか?
たとえば、Publishと同時に、Gitに、最低限、pullを行う、等です。
作業手順として、策定することはできますが、Publishされたパッケージと、Git上にPullされたパッケージが、同一であることは、私の理解だと、簡単には確認できません。
また、Publishされた、バージョンを、Git側に、コメントとして残すのは、「退屈な手作業」になり、気持ちの良いものでは、ありません。
理想を考えると、
- Studioで、Publishを実行すると、最初に、設定されたbranchに、fetchして、mergeする
- conflictが、あれば、Studio上で、解決する
- conflictを、なくしてから、Studioで、Publishする
- Publishに、成功したら、Publishで、付与されたバージョンの、tagを作成し、pushする
を、自動で行えると、齟齬がないと思います。
ですが、今のUiPathには、そういう機能が、ないという理解です。
皆さんは、どうやって、ソースコード管理と、OrchestratorにPublishされた、パッケージの、紐付けを行っていますか?
(Orchestrator側の、オプションで、ソースコードを含まない、Publishを、禁止できれば、最低限の、目的は達成できるのですが)
How can we link between published package and source code, with using Orchestrator and source code management like Git / TFS.
For example, force pull to Git when publish to Orchestrator from Studio.
Ideally, I’d like do like this:
- On pressing “Publish” on studio, run fetch and try merge with configured branch.
- If there’s conflict, Studio stops Publish and make developer to resolve conflict.
- After merge completed, Studio publishes to Orchestrator.
- Make git tag includes published version from Orchestrator, and pull source to Git with tag.
Unfortunately, for my understanding, UiPath Studio doesn’t have such behavior.
How can we link published package contents and source repository, any good idea?
In the point of view of audit, I want to make this operation easy.
(Another problem, for my understanding, UiPath Orchestrator doesn’t have option that forces include xaml on publishing.)