mirror of
https://github.com/blockchain-etl/ethereum-etl.git
synced 2026-01-09 13:57:54 -05:00
30 lines
913 B
YAML
30 lines
913 B
YAML
name: Publish to PyPI and TestPyPI
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- '*'
|
|
|
|
jobs:
|
|
build-n-publish:
|
|
name: Build and publish to PyPI and TestPyPI
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
- name: Set up Python 3.7
|
|
uses: actions/setup-python@v1
|
|
with:
|
|
python-version: 3.7
|
|
- name: Build a binary wheel and a source tarball
|
|
run: python setup.py sdist
|
|
- name: Publish distribution to Test PyPI
|
|
if: startsWith(github.event.ref, 'refs/tags/v')
|
|
uses: pypa/gh-action-pypi-publish@master
|
|
with:
|
|
password: ${{ secrets.test_pypi_password }}
|
|
repository_url: https://test.pypi.org/legacy/
|
|
- name: Publish distribution to PyPI
|
|
if: startsWith(github.event.ref, 'refs/tags/v')
|
|
uses: pypa/gh-action-pypi-publish@master
|
|
with:
|
|
password: ${{ secrets.pypi_password }} |