Home > Software engineering >  Automate DVC authentication when using github actions
Automate DVC authentication when using github actions

Time:10-14

I'm using GitHub Actions to run some tests on every push and I need DVC. I'm trying to make this work with the runs-on: ubuntu-latest option but when I try to run it, the action get's stuck because it requires manual authentication. Is there a way to go around this and automate the authentication ?

CodePudding user response:

I figured out that in order for this to work, I had to switch to using a service account.

  • Related