|
12345678910111213141516171819202122232425262728293031323334 |
- name: Release Application
-
- on:
- release:
- types: [published]
-
- jobs:
- pipy:
- name: Build and Release to PyPI
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v2
- - name: Set up Python
- uses: actions/setup-python@v2
- with:
- python-version: '3.x'
- - name: Setup environment
- run: |
- sudo apt update
- sudo apt install ruby
- sudo gem install ronn
- - name: Install dependencies
- run: |
- python -m pip install --upgrade pip pipenv setuptools wheel twine
- pipenv install
- - name: Build package
- run: |
- make i18n build
- - name: Publish to PyPI
- env:
- TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
- TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
- run: |
- twine upload dist/*
|