mirror of
https://github.com/Cian-H/invenio-config-iform.git
synced 2025-12-22 13:11:56 +00:00
* global: migrate setup.py to setup.cfg * global: clean up copyright notices and tests * migrate to use black as opinionated auto formater * add .git-blame-ignore-revs
27 lines
654 B
YAML
27 lines
654 B
YAML
on:
|
|
push:
|
|
tags:
|
|
- v*
|
|
|
|
jobs:
|
|
build-n-publish:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Set up Python 3.7
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: 3.7
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install setuptools wheel babel
|
|
- name: Build package
|
|
run: |
|
|
python setup.py compile_catalog sdist bdist_wheel
|
|
- name: pypi-publish
|
|
uses: pypa/gh-action-pypi-publish@v1.3.1
|
|
with:
|
|
user: __token__
|
|
password: ${{ secrets.pypi_password }}
|