A library that computes the ephemerides.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

31 lines
841 B

  1. name: Release Application
  2. on:
  3. - release
  4. jobs:
  5. pipy:
  6. name: Build and release to PyPI
  7. runs-on: ubuntu-latest
  8. steps:
  9. - uses: actions/checkout@v1
  10. - name: Set up Python
  11. uses: actions/setup-python@v1
  12. with:
  13. python-version: '3.x'
  14. - name: Setup environment
  15. run: |
  16. sudo apt update
  17. python -m pip install --upgrade pip poetry
  18. sudo apt install ruby
  19. sudo gem install ronn
  20. - name: Build package
  21. run: |
  22. poetry install
  23. poetry build
  24. - name: Publish package
  25. env:
  26. POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_PASSWORD }}
  27. run: |
  28. poetry publish