Skip to content

Update repo and publish to PyPi #49

Update repo and publish to PyPi

Update repo and publish to PyPi #49

Workflow file for this run

name: Update repo and publish to PyPi
on:
schedule:
- cron: '11 11 1 * *'
workflow_dispatch:
jobs:
update:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements/packaging.txt
- name: Update, build and publish
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
python update.py