I'm trying to work out how to use Github Actions to checkout a remote public repo, then add some some sensitive files into it from the current repo, before finally building etc.
I believe I can checkout a remote repo with
steps:
- name: Checkout
uses: actions/checkout@v2
with:
repository: foo-user/bar-repo
But how do I then copy some files into this checked out repo from files that are in the current repo?