Skip to content

v1.0.2 update blockchain list #12

v1.0.2 update blockchain list

v1.0.2 update blockchain list #12

Workflow file for this run

name: publish
on:
release:
types: [created]
jobs:
publish:
runs-on: "ubuntu-latest"
steps:
- name: Check out repository
uses: actions/checkout@v2
- name: Set up python
id: setup-python
uses: actions/setup-python@v2
with:
python-version: "3.11"
- name: Install Poetry
uses: snok/install-poetry@v1
- name: Build library
run: poetry build
- name: Authenticate in PyPi
run: poetry config http-basic.pypi __token__ ${{ secrets.PYPI_TOKEN }}
- name: Publish library
run: poetry publish