Hi! I am building a github action that uses a docker image. To download that image, it requires authentication.
I have tried to do a docker login in the wf before calling that action, but i am still receiving an unauthorised error. Any idea what should i do? Should i do the authentication inside the action itself?
My action has this inside:
runs:
using: ‘docker’
image: ‘docker://myproject/miimage:latest’
args:
…
How should i do the authentication?
Thanks