Skip to content

allow to start URLs with offset #6

allow to start URLs with offset

allow to start URLs with offset #6

Workflow file for this run

on: [push]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
- run: python3 -m pip install ruff
- name: linters
run: ruff cplay.py
publish:
needs: [lint]
if: startsWith(github.ref, 'refs/tags')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
- run: python3 -m pip install build
- name: build
run: python3 -m build
- name: publish
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}