Skip to content

Commit

Permalink
Fix updae doc
Browse files Browse the repository at this point in the history
  • Loading branch information
gillg committed Nov 7, 2019
1 parent c63fb9c commit 17c1a27
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions UPDATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,29 @@
```
[distutils]
index-servers =
internal
internal
test
prod
[internal]
repository: https://nexus.vitry.intranet/repository/pypi-internal/
ca_cert: /etc/ssl/certs/ca-certificates.crt
[test]
repository: https://test.pypi.org/legacy/
[prod]
repository: https://upload.pypi.org/legacy/
```


```
pip install twine
pip install twine webencodings
```

```
python setup.py sdist
twine upload -r internal dist/ansible-vault-manager*.tar.gz
twine upload -r internal dist/*
twine upload -r test dist/*
twine upload -r prod dist/*
```

0 comments on commit 17c1a27

Please sign in to comment.