-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Recover travis and modify to only deploy to pypi.
- Loading branch information
1 parent
f0db428
commit a2e8086
Showing
2 changed files
with
24 additions
and
16 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
language: python | ||
dist: jammy | ||
python: | ||
- '3.9' | ||
env: | ||
global: | ||
- secure: WYdy6W2pgm9L411IRzBuZHqTNtLPdn1Yyhyl5voBmZeLFla+H84BnjenepwRK0aPy+1tetZGaye/ChM5ewQJVR7Lk0prhbhppP5UwOtQMJh6fm20W3GYuclnnJzQ/VGcRqkqiTHvvkD9E3AgNlFzL1Q1lAZKImBjEOaXF5eN2d5DD90fZkWzrIHVrVO72Pnx9qnuJGGc+1RnS11TR+viijQK8zKxB2G414BVZ4j1apHYyruy0xUnyZ/PJh9GlFYs4lBNdWuHhCQo5MZcZr5fqQZFCmaxSg3NxSd5eGjQxqc1QnbULgDQwuFABv/5VbZWdzmM60vSQuMl1G3uEgWAx6VxFBIgXw8rAJ1Y+KukTwAjVM8zdrZ99vcjTTInNsjs5IpEFr+kaXplvcWFw96kLhOP3lfyjYEFcwt40Q25qhM1QqOR01I9aSnICbvp5SXiKRoZr1QwfD1m4aRbSmsshWlW79RiKijXzP77tA2Tngso9m12bSxY3geS2Scamh8JlXmUE0cPqyZeKeS4tel/Seds/5r0zwHDUQYxRyq8HAeoWqMwg90qptoOUOC6WCklVdiEe1OdxwfoGbRBH0tkeRQFhwmhRItwkpJa0SrSf1nMGUMTlzXfc5CPbXBiPwIOgKKjfrh3NwS1JksAI7XPxDWTmnygKW+TNjRM3aWx65Y= | ||
install: | ||
- pip install poetry | ||
- poetry install -vv | ||
before_deploy: | ||
- poetry config pypi-token.pypi $PYPI_API_TOKEN | ||
- poetry build -f sdist | ||
deploy: | ||
provider: script | ||
script: poetry publish -n -vv | ||
skip_cleanup: true | ||
on: | ||
python: 3.9 | ||
repo: uc-cdis/dictionaryutils | ||
tags: true | ||
after_deploy: | ||
- pip install gen3git | ||
- gen3git release |