Skip to content

fix: issues is too long and the response is not returned #5

fix: issues is too long and the response is not returned

fix: issues is too long and the response is not returned #5

Workflow file for this run

name: Release
on:
push:
branches: [ main ]
tags:
- 'v*.*.*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.9
uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel
- name: Build library
run: |
python setup.py sdist bdist_wheel
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: dist/*