Skip to content

Regenerate client from commit 138c42b of spec repo (#71) #15

Regenerate client from commit 138c42b of spec repo (#71)

Regenerate client from commit 138c42b of spec repo (#71) #15

Workflow file for this run

name: Publish package
on:
push:
tags:
- 'v[0-9].*'
jobs:
publish-package:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master
- name: Install Python
uses: actions/setup-python@v1
with:
python-version: '3.x'
architecture: 'x64'
- name: Build package
run: |
pip install -r requirements.txt
pip install -U wheel
python setup.py bdist_wheel
- name: Upload packate to PyPI
uses: pypa/gh-action-pypi-publish@master
with:
user: __token__
password: ${{ secrets.pypi_token }}