I have been connecting Travis CI to build automatically in one of my GitHub repos. Currently, my Travis CI build is successful. However, I notice the following message in that succesful build:
Skipping a deployment with the releases provider because this repo's name does not match one specified in .travis.yml's deploy.on.repo: HughParsonage/latex-travis
I suspect this is because I followed an example .travis.yml
online and so the deployed repo is still pointing to another repository (HughParsonage/latex-travis
). So, I simply changed the last line of my .travis.yml file
to deploy the repo to the my intended GitHub repo (lindsayrutter/ggenealogy). Doing so then caused my Travis CI build to fail with the following message:
GET https://api.github.com/user: 401 - Bad credentials
For the time being, I switched the last line of my .travis.yml file
to point to the unrelated GitHub repo just so the build will pass. However, I assume I should eventually have this last line pointed to the correct repo (lindsayrutter/ggenealogy).
I should state that the repository used to be called lrutter/ggenealogy. However, I feel I have updated this thoroughly. Upon Internet search, I see similar problems here and there, and only one GitHub issues forum with this topic but I am not understanding the suggestions and many of the links are broken.
How should I attempt to fix the error above when pointed to my repository? Thank you for sharing ideas.