GitHub Actions Checkout with LFS (Private Repo)

121 Views Asked by At

I am storing large files in JFrog Artifactory and rest of the code in GitHub. I am trying to use GitHub Actions Checkout to get the Git Repo code as well as files from the Artifactory.

Since my artifactory is private, I need to use credentials to authenticate which are different than what I use for GitHub login. How can I pass my Artifactory credentials to GitHub Actions Checkout?

I am trying the GitHub Actions checkout as below:

- uses: actions/checkout@v3
  with:
    lfs: true
0

There are 0 best solutions below