Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Setup continuous deployment to PyPi #2

Open
apsknight opened this issue Oct 5, 2019 · 3 comments
Open

Setup continuous deployment to PyPi #2

apsknight opened this issue Oct 5, 2019 · 3 comments

Comments

@apsknight
Copy link
Member

Currently, acl can be installed by pip install acl-iitbbs but it isn't in CD with this repo as of now. Look for the possibility to make it CD with this repo.

@PalAditya
Copy link
Member

As per the docs:

deploy:
  provider: pypi
  user: "__token__"
  password: "Your PyPI API token, including the pypi- prefix"

And for securing your token, first run:

travis encrypt your-api-token --add deploy.password --com

(as we are using travis-ci.com, not .org), followed by:

deploy:
  provider: pypi
  user: "__token__"
  password:
    secure: "Your encrypted token"

Since you were the original owner of this project, would it be possible for you to add these changes to the .yml file to make it CD? Or would you rather have this issue tackled by someone else who wishes to learn how CI/CD works?

In case the second option holds, here is the full reference.

@apsknight
Copy link
Member Author

Thanks @PalAditya, I'll do it.

@madhavtummala
Copy link
Member

@apsknight are you doing it?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants