I want to develop a azure pipeline for secure signing the binary artifact.
Here is the process:
Put the signing tools and binaries in a GitHub repository.
User upload the binaries to GitHub repository folder "unsigned" and run the pipeline, pipeline pull the tools and binaries to a pipeline agent(Winserver) and sign the binaries, the signed binaries will be copied to repository folder "signed".
Directly download the signed binaries from pipeline agent, or upload signed binaries back to GitHub repository where users can download from.
For step 3: How to directly download the signed binaries from pipeline agent to a local PC? What git commands is needed for uploading signed binaries back to GitHub repository? Thanks.