Skip to content

Removes the ROADMAP.md #2

Removes the ROADMAP.md

Removes the ROADMAP.md #2

Workflow file for this run

---
name: Publish on PyPI
on:
push:
tags:
- "*"
jobs:
tests:
uses: ./.github/workflows/tests.yml
publish:
needs: tests
runs-on: ubuntu-latest
permissions:
id-token: write
steps:
- uses: actions/checkout@v3
- run: pip install build
- run: python -m build
- uses: pypa/gh-action-pypi-publish@release/v1
...